import { Notification } from '../types'; type __VLS_Props = { notification: Notification; options: { btn?: Record; icon?: Record; }; closeBtnText?: string; rounded?: 0 | 1 | 2 | 3 | 4 | 'xs' | 'sm' | true | 'lg' | 'xl' | 'pill' | 'circle' | 'shaped'; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Partial any>> & { default?(_: { notification: Notification; }): any; action?(_: { notification: Notification; }): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & { close: (id: string) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onClose?: ((id: string) => any) | undefined; }>, { rounded: 0 | 1 | 2 | 3 | 4 | "xs" | "sm" | true | "lg" | "xl" | "pill" | "circle" | "shaped"; closeBtnText: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };