import type { AgentMetadata } from "../browser/index.js"; /** * Loads both built-in and user-defined tools, with user tools overriding built-in ones. * @returns A map of function calls and a list of tool declarations for the config. */ export declare function loadHybridTools({ workDir, tools }: AgentMetadata): Promise<{ functionCallMap: Map; toolDeclarations: { name: string; description: string; parameters: any; filepath: string; }[]; }>; //# sourceMappingURL=load_tools.d.ts.map