export interface NotificationTheme {
    /** CSS class applied to the notifications container. */
    container: string;
    /** CSS class controlling notification stack positioning. */
    positions: string;
    /** CSS classes applied to an individual notification and its parts. */
    notification: {
        base: string;
        variants: {
            success: {
                base: string;
                icon?: string;
            };
            error: {
                base: string;
                icon?: string;
            };
            warning: {
                base: string;
                icon?: string;
            };
            info: {
                base: string;
                icon?: string;
            };
        };
        header: string;
        content: string;
        body: string;
        closeContainer: string;
        action: string;
        closeButton: string;
    };
}
export declare const notificationTheme: NotificationTheme;
