import AbstractFeature from '../AbstractFeature';
import { FeatureCode } from '../features.types';
export default class CacheFeature extends AbstractFeature {
    description: string;
    code: FeatureCode;
    nameReadable: string;
    actionsDir: string;
    isInstalled(): Promise<boolean>;
}
declare module '../../features/features.types' {
    interface FeatureMap {
        cache: CacheFeature;
    }
    interface FeatureOptionsMap {
        cache: undefined;
    }
}
