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