import type { Argv } from 'yargs'; export declare const command: string; export declare const desc: string; export declare function builder(yargs: Argv): Argv & import("yargs").InferredOptionTypes<{ file: { describe: string; type: "string"; }; mode: { describe: string; type: "string"; }; output: { describe: string; type: "string"; }; }>>; declare type HandlerArguments = { file: string; mode: string; output: string; }; export declare function handler(argv: HandlerArguments): Promise; export {};