import { Plugin } from "vue"; import { NotifyOptions } from "@/controllers/Notifier/types"; export * from "@/controllers/Notifier/types"; export declare const injectionKeyNotifier: unique symbol; export declare const Notifier: Plugin; declare const useNotify: (globalProps?: NotifyOptions) => { notify: (options: string | NotifyOptions, slots?: Readonly<{ [name: string]: import("vue").Slot | undefined; }> | undefined) => import("../controllers/Notifier/types").Notify; }; export { useNotify };