import type { AgentMetadata } from "../google-aistudio/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 loadAgentTools({ agent, workDir, tools }: Pick): Promise<{ tools: Map; toolDeclarations: { name: string; description: string; parameters: any; filepath: string; disabled?: boolean | undefined; }[]; }>; export type AgentTools = Awaited>; //# sourceMappingURL=load_tools.d.ts.map