import { Interpretation } from "../Interpretation"; export declare type Weighting = 1 | 2 | 3; /** * Weighting to apply to this name score. Default is 1. * Other values can be used to increase the weighting. */ export declare type ScoreWeightings = Record; /** * Perform a weighted composite score for the given Interpretation. * Returns a real number from 0 to 5 */ export declare function weightedCompositeScore(i: Interpretation, weightings?: ScoreWeightings): number | undefined;