/** * Minimal result shape this row renders. Compatible with any * doc-search hook whose result type exposes `{ title?, path?, * metadata? }`. The two hub consumers (onboarding-guide catalog, * data-room sidebar) both satisfy this shape via their * `useDocSearch` hook result. */ export interface DocSearchResultRowEntry { title?: string; path?: string; metadata?: Record; } export interface DocSearchResultRowProps { result: DocSearchResultRowEntry; isHighlighted: boolean; } export declare function DocSearchResultRow({ result, isHighlighted, }: DocSearchResultRowProps): import("react").JSX.Element; //# sourceMappingURL=doc-search-result-row.d.ts.map