/**
 * Get the phonetics according to the Double Metaphone algorithm from a value.
 *
 * @param {string} value
 * @returns {[string, string]}
 */
export function doubleMetaphone(value: string): [string, string]
