import type { AgentKnowledgeCommandService } from '../../agent-knowledge-command.service';
import type { AgentKnowledgeService } from '../../agent-knowledge.service';
export declare function createSearchKnowledgeTool({ agentId, projectId, knowledgeService, commandService, }: {
    agentId: string;
    projectId: string;
    knowledgeService: AgentKnowledgeService;
    commandService: AgentKnowledgeCommandService;
}): import("@n8n/agents").BuiltTool;
