export declare const ALERT_SEVERITIES: {
    error: string;
    info: string;
    success: string;
    warning: string;
};
export declare const ALERT_VARIANTS: {
    border: string;
    soft: string;
    tag: string;
    open: string;
    solid: string;
};
export declare const ALERT_SIZES: {
    medium: string;
    small: string;
};
export declare const ALERT_SHAPES: {
    rounded: string;
    none: string;
};
/**
 * Adapted sizing of notification size to icon size for the close icon
 */
export declare const CLOSE_ICON_SIZE: {
    [ALERT_SIZES.medium]: string;
    [ALERT_SIZES.small]: string;
};
export declare const ALERT_BADGE_SIZES: {
    [ALERT_SIZES.small]: string;
    [ALERT_SIZES.medium]: string;
};
