import { App } from 'vue'; export declare function camelize(str: string): string; declare type EventShim = { new (...args: any[]): { $props: { onClick?: (...args: any[]) => void; }; }; }; export declare type WithInstall = T & { install(app: App): void; } & EventShim; export declare function withInstall(options: any): WithInstall; export {};