import { FileDescription } from '../../types/cli.types';
import AbstractFeature from '../AbstractFeature';
import { FeatureCode } from '../features.types';
export default class EventContractFeature extends AbstractFeature {
    code: FeatureCode;
    nameReadable: string;
    description: string;
    actionsDir: string;
    readonly fileDescriptions: FileDescription[];
    isInstalled: () => Promise<boolean>;
}
declare module '../../features/features.types' {
    interface FeatureMap {
        eventContract: EventContractFeature;
    }
    interface FeatureOptionsMap {
        eventContract: undefined;
    }
}
