import { type DefaultProps } from '../config'; export interface AlertProps { showIcon?: boolean; closable?: boolean; type?: 'primary' | 'success' | 'warning' | 'danger'; color?: string; background?: string; square?: boolean; } export declare const defaultAlertProps: DefaultProps; export interface AlertSlots { default?(props: Record): any; icon?(props: Record): any; } export interface AlertEmits { (e: 'close'): void; }