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