import { BaseCommandWithCompression } from '../../base-command-with-compression.js'; export default class Merge extends BaseCommandWithCompression { static aliases: string[]; static description: string; static examples: { description: string; command: string; }[]; static strict: boolean; static args: { input: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static flags: { output: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; keep: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; run(): Promise; }