import type { SuggestionWithScore } from "../types/domain-types.js"; /** * Creates suggestions with scores for a target name * @param targetName - Name to find suggestions for * @param candidates - Available candidate names * @returns Array of suggestions with similarity scores * @complexity O(n*m) where n = candidates length, m = average string length * @purity PURE - no side effects */ export declare const createSuggestionsWithScore: (targetName: string, candidates: string[]) => SuggestionWithScore[]; //# sourceMappingURL=suggestions.d.ts.map