export interface CommandParameterObject { cwd?: string; quiet?: boolean; output?: string; force?: boolean; strip?: boolean; minify?: boolean; bundle?: boolean; babel?: boolean; hashFilename?: number | boolean; omitEmptyJs?: boolean; } export declare function cli(param: CommandParameterObject): void; export declare function run(argv: string[]): void;