import type { Db } from '../../db/db.js';
import type { IFeaturesReadModel } from './types/features-read-model-type.js';
export declare class FeaturesReadModel implements IFeaturesReadModel {
    private db;
    constructor(db: Db);
    featureExists(name: string): Promise<boolean>;
    featureExistsInProject(featureName: string, projectId: string): Promise<boolean>;
    featuresInTheSameProject(featureA: string, featureB: string): Promise<boolean>;
}
//# sourceMappingURL=features-read-model.d.ts.map