/** * Computes the Levenshtein distance between two strings using the * Wagner-Fischer algorithm with single-row space optimization. * @param {string} a - First string * @param {string} b - Second string * @returns {number} The edit distance between the two strings */ export declare function levenshteinDistance(a: string, b: string): number; /** * Computes a normalized similarity score between 0 and 1. * 1 means identical, 0 means completely different. * @param {string} a - First string * @param {string} b - Second string * @returns {number} Similarity score between 0 and 1 */ export declare function levenshteinSimilarity(a: string, b: string): number;