import type { Colors, ElProps } from '..'; export interface AlertProps extends Partial { color?: Colors; dismissible?: boolean; icon?: string | undefined; title?: string | undefined; value?: boolean; filled?: boolean; }