/** * Map RAG `/api/docs/search` wire results into the `` * dropdown's row shape, collapsing entity-table rows into grouped * results so the dropdown lists ONE "Cap Table (12 records)" row * instead of 12 individual rows. * * Pure transform — no telemetry, no navigation, no React deps. Lifted * from the hub's `hooks/use-docs.ts:mapDocSearchResults` (the hub's * `traceCompose` call was hub-only telemetry and is intentionally * dropped — callers that want logging can wrap this helper). */ import type { SearchResult } from '../../ui/search-input'; import type { DocSearchResult } from './types'; export declare function mapDocSearchResults(docs: DocSearchResult[]): SearchResult[]; //# sourceMappingURL=map-doc-search-results.d.ts.map