import { NotificationOptions } from './Notification.vue'; export declare const NOTIFICATION_CONTAINER_ID = "notification-container"; /** * 显示通知 * @param options 通知配置选项 * @returns Promise 返回用户操作结果: 'accept' | 'cancel' | 'timeout' */ export declare const showNotification: (options: NotificationOptions) => Promise; /** * 隐藏当前通知 */ export declare const hideNotification: () => void;