export interface CalloutTheme {
    /** CSS classes applied to the root callout container, including per-variant styles. */
    base: {
        common: string;
        variant: {
            default: string;
            success: string;
            error: string;
            warning: string;
            info: string;
            [key: string]: string;
        };
    };
    /** CSS classes applied to the callout icon, including per-variant styles. */
    icon: {
        common: string;
        variant: {
            default: string;
            success: string;
            error: string;
            warning: string;
            info: string;
            [key: string]: string;
        };
    };
    /** CSS class applied to the callout text content. */
    text: string;
}
export declare const calloutTheme: CalloutTheme;
