export interface TagClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if variant="neutral". */ neutral: string; /** Class name applied to the root element if variant="error". */ error: string; /** Class name applied to the root element if variant="warning". */ warning: string; /** Class name applied to the root element if variant="info". */ info: string; /** Class name applied to the root element if variant="success". */ success: string; /** Class name applied to the root element if style="bold". */ bold: string; /** Class name applied to the root element if style="subtle". */ subtle: string; } export type TagClassKey = keyof TagClasses; export declare function getTagUtilityClass(slot: string): string; declare const tagClasses: TagClasses; export default tagClasses;