import type { ExtractPropTypes, VNode } from 'vue'; import type Notification from './notification.vue'; export declare const notificationTypes: readonly ["success", "info", "warning", "error"]; export declare const notificationProps: { readonly customClass: import("@element-plus-next/vue-utils").EpPropFinalized; readonly dangerouslyUseHTMLString: import("@element-plus-next/vue-utils").EpPropFinalized; readonly duration: import("@element-plus-next/vue-utils").EpPropFinalized; readonly icon: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => (string | Comment) & {}) | (() => string | Comment) | ((new (...args: any[]) => (string | Comment) & {}) | (() => string | Comment))[], unknown, unknown, "", boolean>; readonly id: import("@element-plus-next/vue-utils").EpPropFinalized; readonly message: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => (string | VNode) & {}) | (() => string | VNode) | ((new (...args: any[]) => (string | VNode) & {}) | (() => string | VNode))[], unknown, unknown, "", boolean>; readonly offset: import("@element-plus-next/vue-utils").EpPropFinalized; readonly onClick: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => () => void) | (() => () => void) | { (): () => void; new (): any; readonly prototype: any; } | ((new (...args: any[]) => () => void) | (() => () => void) | { (): () => void; new (): any; readonly prototype: any; })[], unknown, unknown, () => undefined, boolean>; readonly onClose: { readonly type: import("@vue/runtime-core").PropType<() => void>; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly position: import("@element-plus-next/vue-utils").EpPropFinalized; readonly showClose: import("@element-plus-next/vue-utils").EpPropFinalized; readonly title: import("@element-plus-next/vue-utils").EpPropFinalized; readonly type: import("@element-plus-next/vue-utils").EpPropFinalized; readonly zIndex: import("@element-plus-next/vue-utils").EpPropFinalized; }; export declare type NotificationProps = ExtractPropTypes; export declare const notificationEmits: { destroy: () => boolean; }; export declare type NotificationEmits = typeof notificationEmits; export declare type NotificationInstance = InstanceType; export declare type NotificationOptions = Omit & { appendTo?: HTMLElement | string; }; export declare type NotificationOptionsTyped = Omit; export interface NotificationHandle { close: () => void; } export declare type NotificationParams = Partial | string | VNode; export declare type NotificationParamsTyped = Partial | string | VNode; export declare type NotifyFn = ((options?: NotificationParams) => NotificationHandle) & { closeAll: () => void; }; export declare type NotifyTypedFn = (options?: NotificationParamsTyped) => NotificationHandle; export interface Notify extends NotifyFn { success: NotifyTypedFn; warning: NotifyTypedFn; error: NotifyTypedFn; info: NotifyTypedFn; } export interface NotificationQueueItem { vm: VNode; } export declare type NotificationQueue = NotificationQueueItem[];