/**
* From the haystack, will find the closest value to the needle
*
* @paramneedle - what the user provided - find results similar to this
* @paramhaystack - possible results to search against
*/exportdeclareconstfindSuggestion: (needle: string, haystack: string[]) =>string;