UNPKG

1.25 kBTypeScriptView Raw
1export interface TablePaginationClasses {
2 /** Class name applied to the root element. */
3 root: string;
4 /** Class name applied to the Toolbar component. */
5 toolbar: string;
6 /** Class name applied to the spacer element. */
7 spacer: string;
8 /** Class name applied to the select label Typography element. */
9 selectLabel: string;
10 /** Class name applied to the Select component `root` element. */
11 selectRoot: string;
12 /** Class name applied to the Select component `select` class. */
13 select: string;
14 /** Class name applied to the Select component `icon` class. */
15 selectIcon: string;
16 /** Class name applied to the Select component `root` element. */
17 input: string;
18 /** Class name applied to the MenuItem component. */
19 menuItem: string;
20 /** Class name applied to the displayed rows Typography element. */
21 displayedRows: string;
22 /** Class name applied to the internal `TablePaginationActions` component. */
23 actions: string;
24}
25export type TablePaginationClassKey = keyof TablePaginationClasses;
26export declare function getTablePaginationUtilityClass(slot: string): string;
27declare const tablePaginationClasses: TablePaginationClasses;
28export default tablePaginationClasses;