/**
 * Calculate the Jaro-Winkler distance between two strings
 * @param {string} first The string to compare
 * @param {string} second The string to compare with
 * @returns {number} similarity score, higher value means strings are more similar, between 0 and 1
 */
export function string_jaro_winkler(first: string, second: string): number;
//# sourceMappingURL=string_jaro_winkler.d.ts.map