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