/** * Perform fuzzy string matching on an array of strings * @param query - The search query * @param items - Array of strings to search in * @param threshold - Similarity threshold (0-1) for matching (default: 0.6) * @returns Array of matching items with their similarity scores, sorted by best match * @example * fuzzySearch("hello", ["hello", "world", "helo", "help"]); * // [{ item: "hello", score: 1 }, { item: "helo", score: 0.8 }, { item: "help", score: 0.6 }] */ export declare const fuzzySearch: (query: string, items: string[], threshold?: number) => { item: string; score: number; }[];