import type { Plugin } from "vue"; declare type EventShim = { new (...args: any[]): { $props: { onClick?: (...args: any[]) => void; }; }; }; export declare type WithInstall = T & Plugin & EventShim; export declare function withInstall(options: T): WithInstall; export {};