import '@douyinfe/semi-foundation/lib/es/notification/notification.css'; import type { NoticeProps } from '@douyinfe/semi-foundation/lib/es/notification/notificationFoundation'; import { VNode } from 'vue'; type NotificationFunType = { success: (config: NoticeProps) => string; info: (config: NoticeProps) => string; error: (config: NoticeProps) => string; warning: (config: NoticeProps) => string; open: (config: NoticeProps) => string; close: (instanceID: string) => void; }; export default function useNotification(): [NotificationFunType, () => VNode[]]; export {};