export interface SvgIconClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `color="inherit"`. */ colorInherit: string; /** Class name applied to the badge `span` element if `color="neutral"`. */ colorNeutral: string; /** Class name applied to the badge `span` element if `color="error"`. */ colorError: string; /** Class name applied to the badge `span` element if `color="info"`. */ colorInfo: string; /** Class name applied to the badge `span` element if `color="warning"`. */ colorWarning: string; /** Class name applied to the badge `span` element if `color="success"`. */ colorSuccess: 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; } export type SvgIconClassKey = keyof SvgIconClasses; export declare function getSvgIconUtilityClass(slot: string): string; declare const svgIconClasses: SvgIconClasses; export default svgIconClasses;