import { Command, flags } from '@oclif/command'; export default class ListEnvCommand extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; region: flags.IOptionFlag; json: import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; }