import { Notify } from './function-call'; import type { Numeric } from '../utils'; export declare type NotifyMessage = Numeric; export declare type NotifyType = 'primary' | 'success' | 'danger' | 'warning'; export declare type NotifyPosition = 'top' | 'bottom'; export declare type NotifyOptions = { type?: NotifyType; color?: string; message?: NotifyMessage; duration?: number; position?: NotifyPosition; className?: unknown; background?: string; lockScroll?: boolean; onClick?: (event: MouseEvent) => void; onClose?: () => void; onOpened?: () => void; }; declare module '@vue/runtime-core' { interface ComponentCustomProperties { $notify: typeof Notify; } }