/**
* Get the phonetics according to the Double Metaphone algorithm from a value.
*
* @param {string} value
* Value to use.
* @returns {[string, string]}
* Double metaphone codes for `value`.
*/exportfunctiondoubleMetaphone(value: string): [string, string]