import AbstractFeature, { FeatureDependency } from '../AbstractFeature';
import { FeatureCode } from '../features.types';
declare module '../../features/features.types' {
    interface FeatureMap {
        log: LogFeature;
    }
    interface FeatureOptionsMap {
        log: undefined;
    }
}
export default class LogFeature extends AbstractFeature {
    nameReadable: string;
    description: string;
    code: FeatureCode;
    dependencies: FeatureDependency[];
    actionsDir: string;
    isInstalled(): Promise<boolean>;
}
