export interface PaginationItemClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `type="page"`. */ page: string; /** Class name applied to the root element if `size="small"`. */ sizeSmall: string; /** Class name applied to the root element if `size="large"`. */ sizeLarge: string; /** Class name applied to the root element if `type="start-ellipsis"` or `type="end-ellipsis"`. */ ellipsis: string; /** Class name applied to the root element if `type="first"` or type="last". */ firstLast: string; /** Class name applied to the root element if `type="previous"` or type="next". */ previousNext: string; /** State class applied to the root element if keyboard focused. */ focusVisible: string; /** State class applied to the root element if `disabled={true}`. */ disabled: string; /** State class applied to the root element if `selected={true}`. */ selected: string; /** Class name applied to the icon to display. */ icon: string; } export type PaginationItemClassKey = keyof PaginationItemClasses; export declare function getPaginationItemUtilityClass(slot: string): string; declare const paginationItemClasses: PaginationItemClasses; export default paginationItemClasses;