import { Command } from '@oclif/command'; export default class Undo extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; }; static strict: boolean; static args: { name: string; description: string; }[]; run(): Promise; }