import { Wrapper, WrapperArray } from "@vue/test-utils"; import { PluginOptions } from "../../src/types"; declare const loadPlugin: (options?: PluginOptions | undefined) => { topLeft: Wrapper & { getToasts(): WrapperArray; }; topCenter: Wrapper & { getToasts(): WrapperArray; }; topRight: Wrapper & { getToasts(): WrapperArray; }; bottomLeft: Wrapper & { getToasts(): WrapperArray; }; bottomCenter: Wrapper & { getToasts(): WrapperArray; }; bottomRight: Wrapper & { getToasts(): WrapperArray; }; localVue: import("vue/types/vue").VueConstructor; containerWrapper: Wrapper; }; export { loadPlugin };