import { Command, flags } from '@oclif/command'; export declare class Get extends Command { static description: string; static examples: string[]; static flags: { locale: flags.IOptionFlag; target: flags.IOptionFlag; stage: flags.IOptionFlag; build: import("@oclif/parser/lib/flags").IBooleanFlag; reverse: import("@oclif/parser/lib/flags").IBooleanFlag; overwrite: import("@oclif/parser/lib/flags").IBooleanFlag; debug: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; options: string[]; required: boolean; }[]; run(): Promise; }