import type { SearchOutputFormat, SearchResult } from '../types.js'; export type FormatSearchResultsOptions = { format: SearchOutputFormat; }; export declare function formatSearchResults(results: readonly SearchResult[], options: FormatSearchResultsOptions): string;