export interface IconButtonClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the IconButton if `variant="filled"`. */ filled: string; /** Class name applied to the IconButton if `variant="outlined"`. */ outlined: string; /** Class name applied to the IconButton if `variant="standard"`. */ standard: string; /** Class name applied to the IconButton if `variant="neutral"`. */ neutral: string; } export type IconButtonClassKey = keyof IconButtonClasses; export declare function getIconButtonUtilityClass(slot: string): string; declare const iconButtonClasses: IconButtonClasses; export default iconButtonClasses;