import { RankedDictionary } from '../types'; export interface FindLevenshteinDistanceResult { levenshteinDistance: number; levenshteinDistanceEntry: string; } declare const findLevenshteinDistance: (password: string, rankedDictionary: RankedDictionary, threshold: number) => Partial; export default findLevenshteinDistance;