import type yargs from "yargs"; import type { CommandModule } from "yargs"; declare const builder: (args: yargs.Argv) => yargs.Argv<{ input: string; } & { output: string; } & { "private-key": string; } & { watch: boolean | undefined; }>; type Args = yargs.Arguments extends yargs.Argv ? U : never>; export declare const packCommand: CommandModule<{}, Args>; export {};