import { Command, flags } from "@oclif/command"; export default class SaveImage extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; "new-tag": flags.IOptionFlag; "discard-repository": import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; required: boolean; description: string; }[]; run(): Promise; }