import { Vue as _Vue } from "./vue"; export type PluginFunction = (Vue: typeof _Vue, options?: T) => void; export interface PluginObject { install: PluginFunction; [key: string]: any; }