import { CustomizableOptions } from '../../composables/useCustomizableOptions'; import { Notification as NotificationType } from './types'; type __VLS_Props = CustomizableOptions & { closeBtnText?: string; rounded?: 0 | 1 | 2 | 3 | 4 | 'xs' | 'sm' | true | 'lg' | 'xl' | 'pill' | 'circle' | 'shaped'; bottom?: true | false; showAll?: boolean; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: any; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, { clearAll: () => void; clearNotification: (id: string) => void; notificationQueue: import('vue').Ref<{ id: string; message: string; type: "info" | "success" | "warning" | "error"; timeout?: number | undefined; icon?: string | null | undefined; }[], NotificationType[] | { id: string; message: string; type: "info" | "success" | "warning" | "error"; timeout?: number | undefined; icon?: string | null | undefined; }[]>; displayedNotifications: import('vue').Ref<{ id: string; message: string; type: "info" | "success" | "warning" | "error"; timeout?: number | undefined; icon?: string | null | undefined; }[], NotificationType[] | { id: string; message: string; type: "info" | "success" | "warning" | "error"; timeout?: number | undefined; icon?: string | null | undefined; }[]>; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, { rounded: 0 | 1 | 2 | 3 | 4 | "xs" | "sm" | true | "lg" | "xl" | "pill" | "circle" | "shaped"; bottom: true | false; closeBtnText: string; showAll: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };