export interface TablePaginationClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the dropdown label component. */ dropdownLabel: string; /** Class name applied to the dropdown element. */ dropdown: string; /** Class name applied to the dropdown option element. */ dropdownOption: string; /** Class name applied to the action element. */ actions: string; /** Class name applied to the root element if `size="small"`. */ sizeSmall: string; /** Class name applied to the root element if `size="medium"`. */ sizeMedium: string; /** Class name applied to the root element if `size="large"`. */ sizeLarge: string; /** Class name applied to the root element if `disabled={true}`. */ disabled: string; } export type TablePaginationClassKey = keyof TablePaginationClasses; export declare function getTablePaginationUtilityClass(slot: string): string; declare const tablePaginationClasses: TablePaginationClasses; export default tablePaginationClasses;