/** * Notification 方法 * @description 函数式调用通知 */ import { type AppContext } from 'vue'; import type { NotificationFn } from './notification'; import './notification.css'; export declare const setNotificationDefaultAppContext: (appContext?: AppContext | null) => void; declare const Notification: NotificationFn; export default Notification;