import type { ToolExecuted } from './types';
export declare const RETRIEVE_KNOWLEDGE_TOOL = "retrieve_knowledge";
export declare function parseTools(tools: ToolExecuted[]): {
    retrieveKnowledgeTools: ToolExecuted[];
    otherTools: ToolExecuted[];
    allSourcesIds: string[];
    allChunksIds: string[];
    query: string | undefined;
};
