import { Slot } from 'vue'; export interface Props { message?: string; description?: string; type?: 'default' | 'success' | 'info' | 'warning' | 'error'; bordered?: boolean; closable?: boolean; closeText?: string; icon?: string; showIcon?: boolean; actions?: Slot; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { icon?(_: {}): any; icon?(_: {}): any; default?(_: {}): any; description?(_: {}): any; actions?(_: {}): any; closeText?(_: {}): any; }; refs: { alertRef: HTMLDivElement; }; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent void; }, string, import('vue').PublicProps, Readonly & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; }>, { message: string; description: string; type: "default" | "success" | "info" | "warning" | "error"; bordered: boolean; closable: boolean; closeText: string; icon: string; showIcon: boolean; actions: Slot; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { alertRef: HTMLDivElement; }, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };