import BaseCommand from '../base-command';
declare class CleanCacheCommand extends BaseCommand<typeof CleanCacheCommand> {
    static description: string;
    run(): Promise<void>;
}
export default CleanCacheCommand;
