/** * Creates an "amazing" regular expression that matches the letters in order and * escapes any letters that could be part of a regex. This should normally be * used in fuzzy filters or determining fuzzy matches. * * @param query The query string to convert into a "fuzzy" regular expression * @return The "fuzzy" regular expression that can be used to determine matches. */ export default function getFuzzyRegExp(query: string): RegExp;