import type { SpecOverview } from '../orient.types.js'; /** * @purpose Render a list of all specs with their task-to-file mappings. * @param overviews All spec overview entries. * @returns Array of formatted output lines. */ export declare function renderSpecsOverview(overviews: SpecOverview[]): string[]; /** * @purpose Render a single spec's task-to-file details. * @param overview Single spec overview entry. * @returns Array of formatted output lines. */ export declare function renderSpecSearch(overview: SpecOverview): string[];