import { type PracticeDeclaration } from '../../../domain.objects'; import { FilePracticeEvaluation } from '../../../domain.objects/FilePracticeEvaluation'; import type { ProjectCheckContext } from '../../../domain.objects/ProjectCheckContext'; export declare const evaluteProjectAgainstPracticeDeclaration: ({ practice, project, }: { practice: PracticeDeclaration; project: ProjectCheckContext; }) => Promise;