import type { Agent } from './agent'; import type { FunctionTool, Tool } from './tool'; export declare function registerAgentToolSourceAgent(tool: FunctionTool, agent: Agent): void; export declare function getAgentToolSourceAgent(tool: Tool): Agent | undefined;