import { Arguments, Argv } from 'yargs'; export declare const command: string[]; export declare const describe = "Bundle Vue.js library"; export declare function builder(yargs: Argv): Argv; export declare type BuildArgs = { config?: string; entry?: string; libraryName?: string; fileName?: string; outDir?: string; cleanOutDir?: boolean; sourceMap?: boolean; externals?: string[]; }; export declare function handler(argv: Arguments): Promise;