import type { App } from 'vue'; export type WithInstall = T & { install(app: App): void; }; export declare function objectFromArray, P>(arr: T, generatorValue: (key: string) => P): Record; export declare function withInstall(options: any, extraInstall?: (app: App, config: any) => void): WithInstall; export declare function createNamespace(name: string): string;