import Command from '../BaseCommand.js';
export default class Delete extends Command {
    static description: string;
    static aliases: string[];
    static examples: string[];
    static flags: {
        recursive: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
    };
    static strict: boolean;
    run(): Promise<void>;
}
