export declare enum Similarity {
    LOW = "low",
    MID = "mid",
    HIGH = "high"
}
export declare enum SimilarityConfidenceThreshold {
    LOW = 0.7,
    MID = 0.75,
    HIGH = 0.85
}
export declare function isSimilarByScore(rank: Similarity, score: number): boolean;
