/** @format */ import type { FeatureSet, TextItem, TextScores } from '../types'; export declare const computeFeatureScores: (textItems: TextItem[], featureSets: FeatureSet[]) => TextScores; export declare const getTextWithHighestFeatureScore: (textItems: TextItem[], featureSets: FeatureSet[], returnEmptyStringIfHighestScoreIsNotPositive?: boolean, returnConcatenatedStringForTextsWithSameHighestScore?: boolean) => [string, TextScores];