import type { KeywordMatch } from '../orient.types.js'; /** * @purpose Render keyword search results sorted by score. * @param matches Scored keyword matches. * @param projectRoot Absolute project root. * @returns Array of formatted output lines. */ export declare function renderSearch(matches: KeywordMatch[], projectRoot: string): string[];