import type { AgentKnowledgeCommandService } from '../../agent-knowledge-command.service'; import { type WorkspaceFiles } from './file-references'; import type { ParsedSearchKnowledgeInput, SearchKnowledgeOutput } from './schemas'; type ReadInput = Extract; export declare function runReadOperation(input: ReadInput, workspaceRoot: string, files: WorkspaceFiles, commandService: AgentKnowledgeCommandService): Promise; export {};