import { PluginFunction } from "vue"; import { VueConstructor } from "vue/types/vue"; import ToastInterface from "./ts/interface"; import { POSITION, TYPE } from "./ts/constants"; import { PluginOptions } from "./types"; import "./scss/index.scss"; declare function createToastInterface(eventBus: InstanceType): ReturnType; declare function createToastInterface(options?: PluginOptions, Vue?: VueConstructor): ReturnType; declare const VueToastificationPlugin: PluginFunction; export default VueToastificationPlugin; export { POSITION, TYPE, createToastInterface };