import type { App, Plugin } from 'vue';
import type { ConfigProviderContext } from 'hongluan-ui';
export declare type installDefinition = (app: App, options: ConfigProviderContext) => void;
export declare type makeInstallerDefinition = (components: Plugin[]) => {
    version: string;
    install: installDefinition;
};
export declare const makeInstaller: makeInstallerDefinition;
