import { PropAnyComponent, AlertAction, AlertColor } from '../../helpers/common/components'; type Size = 'default' | 'xs' | '2xs'; type __VLS_Props = { color?: AlertColor; withDismiss?: boolean; actions?: Array; customIcon?: PropAnyComponent; hideIcon?: boolean; size?: Size; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { title?(_: {}): any; description?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & { dismiss: () => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onDismiss?: (() => any) | undefined; }>, { size: Size; color: AlertColor; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };