export type AlertType = 'default' | 'primary' | 'info' | 'success' | 'warning' | 'error';
export interface AlertSlots {
    default?: () => any;
    title?: () => any;
    close?: () => any;
    icon?: () => any;
}
export declare const alertTypes: readonly AlertType[];
