1
0
Fork 0
react-playground/node_modules/@mui/material/Table/tableClasses.d.ts

10 lines
No EOL
375 B
TypeScript

export interface TableClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `stickyHeader={true}`. */
stickyHeader: string;
}
export type TableClassKey = keyof TableClasses;
export declare function getTableUtilityClass(slot: string): string;
declare const tableClasses: TableClasses;
export default tableClasses;