import type { DefineComponent } from "vue"; /** Alert component props */ export interface AlertProps { /** default: warning */ type?: string; closable?: boolean; /** default: true */ showIcon?: boolean; icon?: string | Record | any[]; message?: string; description?: string; bordered?: boolean; } /** Alert Vue 3 component */ declare const Alert: DefineComponent; export default Alert;