import BaseCommand from '../../base.command'; import { RestoreModule } from '../../modules/backup/restore.module'; export default class RestoreCommand extends BaseCommand { commandClass: typeof RestoreCommand; commandModule: typeof RestoreModule; static description: string; static examples: string[]; static args: { backupIdOrPath: import("@oclif/core/lib/interfaces/parser").Arg>; outputPath: import("@oclif/core/lib/interfaces/parser").Arg>; }; static flags: { environment: import("@oclif/core/lib/interfaces").OptionFlag; }; }