export declare type NotificationStatus = 'warning' | 'success' | 'danger' | 'normal' | 'info'; export declare type BehaviorType = 'fixed' | 'fluid'; export declare type NotificationProps = { status?: NotificationStatus; title?: string; description?: string; icon?: string; loading?: boolean; closable?: boolean; autoClose?: number; behavior?: BehaviorType; };