import { App } from "vue";
declare type EventShim = {
    new (...args: any[]): {
        $props: {
            onClick?: (...args: any[]) => void;
        };
    };
};
export declare type WithInstall<T> = T & {
    install(app: App): void;
} & EventShim;
export declare function withInstall<T>(options: T): WithInstall<T>;
export {};
//# sourceMappingURL=with-install.d.ts.map