export interface CalloutTheme {
    base: {
        common: string;
        variant: {
            default: string;
            success: string;
            error: string;
            warning: string;
            info: string;
            [key: string]: string;
        };
    };
    icon: {
        common: string;
        variant: {
            default: string;
            success: string;
            error: string;
            warning: string;
            info: string;
            [key: string]: string;
        };
    };
    text: string;
}
export declare const calloutTheme: CalloutTheme;
export declare const legacyCalloutTheme: CalloutTheme;
