import { ExtractPropTypes, PropType, VNode, ComponentInternalInstance } from 'vue'; import { ButtonType } from '../../button'; export type NotifyPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; export declare const notifyProps: { readonly id: { readonly type: StringConstructor; readonly default: ""; }; readonly type: { readonly type: PropType; readonly default: ""; }; readonly title: { readonly type: StringConstructor; readonly default: ""; }; readonly position: { readonly type: PropType; readonly default: "bottom-right"; }; readonly offset: { readonly type: NumberConstructor; readonly default: 20; }; readonly message: { readonly type: StringConstructor; readonly required: true; }; readonly duration: { readonly type: NumberConstructor; readonly default: 3000; }; readonly showClose: { readonly type: BooleanConstructor; readonly default: true; }; readonly useHTML: { readonly type: BooleanConstructor; readonly default: false; }; readonly prefixIcon: { readonly type: StringConstructor; readonly default: ""; }; readonly onDestroy: FunctionConstructor; readonly onClose: FunctionConstructor; }; export interface NotifyInstance { id: String; vnode: VNode; vm: ComponentInternalInstance; } export type NotifyInstanceList = { [x in NotifyPosition]: NotifyInstance[]; }; export type NotifyProps = ExtractPropTypes;