import { type PropType, type StyleValue } from 'vue'; export interface NotifyProps { rootStyle?: StyleValue; rootClass?: string; type?: 'primary' | 'success' | 'warning' | 'error'; message?: string; color?: string; background?: string; visible?: boolean; position?: 'top' | 'bottom'; timeout?: number; duration?: number; } export declare const notifyProps: { rootStyle: PropType; rootClass: StringConstructor; type: { type: PropType<"success" | "primary" | "error" | "warning" | undefined>; default: string; }; message: StringConstructor; color: StringConstructor; background: StringConstructor; visible: BooleanConstructor; position: { type: PropType>; default: string; }; timeout: { type: NumberConstructor; default: number; }; duration: { type: NumberConstructor; default: number; }; }; export interface NotifyEmits { (e: 'click', event: any): void; (e: 'update:visible', event: any): void; } export interface NotifyExpose { reHideLater: () => void; cancelHide: () => void; }