export interface BannerClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `color="neutral"`. */ colorNeutral: string; /** Class name applied to the root element if `color="error"`. */ colorError: string; /** Class name applied to the root element if `color="info"`. */ colorInfo: string; /** Class name applied to the root element if `color="warning"`. */ colorWarning: string; /** Class name applied to the root element if `color="success"`. */ colorSuccess: string; /** Class name applied to the root element if `color="accent"`. */ colorAccent: string; /** Class name applied to the root element if `intensity="bold"`. */ intensityBold: string; /** Class name applied to the root element if `intensity="subtle"`. */ intensitySubtle: string; /** Class name applied to the icon element */ icon: string; /** Class name applied to the actions container element */ actions: string; /** Class name applied to the primary action element */ primaryAction: string; /** Class name applied to the secondary action element */ secondaryAction: string; /** Class name applied to the close button element */ closeButton: string; /** Class name applied to the content wrapper element */ content: string; /** Class name applied to the title element */ title: string; /** Class name applied to the support text element */ supportText: string; } type BannerClassKey = keyof BannerClasses; export declare const bannerUtilitySlots: BannerClassKey[]; export {};