import type { VNode, ExtractPropTypes } from 'vue'; export declare const notificationTypes: readonly ["success", "info", "warning", "error"]; export declare const notificationProps: { readonly customClass: import("element-plus/es/utils/props").BuildPropReturn; readonly dangerouslyUseHTMLString: import("element-plus/es/utils/props").BuildPropReturn; readonly duration: import("element-plus/es/utils/props").BuildPropReturn; readonly icon: import("element-plus/es/utils/props").BuildPropReturn, "", unknown, unknown, unknown>; readonly id: import("element-plus/es/utils/props").BuildPropReturn; readonly message: import("element-plus/es/utils/props").BuildPropReturn>, "", unknown, unknown, unknown>; readonly offset: import("element-plus/es/utils/props").BuildPropReturn; readonly onClick: import("element-plus/es/utils/props").BuildPropReturn void>, () => undefined, unknown, unknown, unknown>; readonly onClose: import("element-plus/es/utils/props").BuildPropReturn void>, unknown, true, unknown, unknown>; readonly position: import("element-plus/es/utils/props").BuildPropReturn; readonly showClose: import("element-plus/es/utils/props").BuildPropReturn; readonly title: import("element-plus/es/utils/props").BuildPropReturn; readonly type: import("element-plus/es/utils/props").BuildPropReturn; readonly zIndex: import("element-plus/es/utils/props").BuildPropReturn; }; export declare type NotificationProps = ExtractPropTypes; export declare const notificationEmits: { destroy: () => boolean; }; export declare type NotificationEmits = typeof notificationEmits; 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[];