interface CodebaseLspResult { name: string; kind: string; lspKind: number; file: string; line: number; source: 'index' | 'lsp'; server?: string | undefined; score?: number | undefined; snippet?: string | undefined; } interface CodebaseLspSearchOutput { results: CodebaseLspResult[]; totalIndex: number; totalLsp: number; query: string; usedIndex: boolean; usedLsp: boolean; } /** * Format `codebase-lsp-search` output for human-readable display. */ export declare function formatCodebaseLspResults(output: CodebaseLspSearchOutput, cwd: string): string; export {}; //# sourceMappingURL=symbols.d.ts.map