/**
 * Get the phonetics according to the original Metaphone algorithm from a value
 *
 * @param {string} value
 * @returns {string}
 */
export function metaphone(value: string): string
