declare function fuzzyFinderInner(string: string, abbreviation: string, lowerString: string, lowerAbbreviation: string, stringIndex: number, abbreviationIndex: number, memoizedResults: Record<string, number>): number;
declare function fuzzyFinder(string: string, abbreviation: string, aliases: string[]): number;

export { fuzzyFinder, fuzzyFinderInner };
