export declare class CodeSearchDisplayService { /** * Format add table result for display. * Returns lines to output, or a JSON string if jsonOutput is true. */ formatAddTableResult(result: any, jsonOutput: boolean): string[]; /** * Format search groups for display. * Returns lines to output, or a JSON string if jsonOutput is true. */ formatSearchGroups(groups: any[], jsonOutput: boolean): string[]; /** * Format search results for display. * Returns lines to output, or a JSON string if jsonOutput is true. */ formatSearchResults(results: any[], jsonOutput: boolean): string[]; /** * Format tables for a search group for display. * Returns lines to output, or a JSON string if jsonOutput is true. */ formatTablesForGroup(tables: any[], groupName: string, jsonOutput: boolean): string[]; } //# sourceMappingURL=code-search-display.service.d.ts.map