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/es/utils").EpPropFinalized; readonly dangerouslyUseHTMLString: BooleanConstructor; readonly duration: import("element-plus/es/utils").EpPropFinalized; readonly icon: { readonly type: import("vue").PropType (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly id: import("element-plus/es/utils").EpPropFinalized; readonly message: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | VNode) & {}) | (() => string | VNode) | ((new (...args: any[]) => (string | VNode) & {}) | (() => string | VNode))[], unknown, unknown, "", boolean>; readonly offset: import("element-plus/es/utils").EpPropFinalized; readonly onClick: import("element-plus/es/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").PropType<() => void>; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly position: import("element-plus/es/utils").EpPropFinalized; readonly showClose: import("element-plus/es/utils").EpPropFinalized; readonly title: import("element-plus/es/utils").EpPropFinalized; readonly type: import("element-plus/es/utils").EpPropFinalized; readonly zIndex: NumberConstructor; }; 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 & { /** * @description set the root element for the notification, default to `document.body` */ 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[];