import { NotificationConfig, NotificationInstance } from "./interface.js"; import { MaybeRef } from "@v-c/util/dist/type"; import * as vue_jsx_runtime0 from "vue/jsx-runtime"; //#region src/notification/useNotification.d.ts type HolderProps = NotificationConfig & { onAllRemoved?: VoidFunction; }; declare function useInternalNotification(notificationConfig?: MaybeRef): readonly [NotificationInstance, () => vue_jsx_runtime0.JSX.Element]; declare function useNotification(notificationConfig?: MaybeRef): readonly [NotificationInstance, () => vue_jsx_runtime0.JSX.Element]; //#endregion export { useNotification as default, useInternalNotification };