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