/** * Calculate the edit distance between two words using an A* algorithm. * * Using basic weights, this algorithm has the same results as the Damerau-Levenshtein algorithm. */ export declare function distanceAStar(a: string, b: string): number; //# sourceMappingURL=distanceAStar.d.ts.map