import { ScoreDeterminantType } from '../../enumerations/score-determinant-type.enum';
import { AdvicePresentation, IAdvice } from '../advice/i-advice.interface';
export interface BestFitResult {
    score?: number;
    breakdown?: Map<ScoreDeterminantType, number>;
    advice?: Map<ScoreDeterminantType, IAdvice<AdvicePresentation, AdvicePresentation>>;
    qualificationCompleteness?: Map<ScoreDeterminantType, number>;
    requirementCompleteness?: Map<ScoreDeterminantType, number>;
}
