import { Notification } from './types'; export interface Props { maxNotifications?: number; enter?: string; enterFrom?: string; enterTo?: string; leave?: string; leaveFrom?: string; leaveTo?: string; move?: string; moveDelay?: string; } declare function __VLS_template(): { default?(_: { notifications: { [x: string]: unknown; id: number; group: string; }[]; close: (id: Notification["id"]) => void; hovering: (id: number, value: boolean, timeout?: number) => void; }): any; }; declare const __VLS_component: import('vue').DefineComponent, { maxNotifications: number; enter: string; enterFrom: string; enterTo: string; leave: string; leaveFrom: string; leaveTo: string; move: string; moveDelay: string; }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { close: () => void; }, string, import('vue').PublicProps, Readonly, { maxNotifications: number; enter: string; enterFrom: string; enterTo: string; leave: string; leaveFrom: string; leaveTo: string; move: string; moveDelay: string; }>>> & Readonly<{ onClose?: (() => any) | undefined; }>, { maxNotifications: number; enter: string; enterFrom: string; enterTo: string; leave: string; leaveFrom: string; leaveTo: string; move: string; moveDelay: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; declare const _default: __VLS_WithTemplateSlots>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };