import { type Stats } from "node:fs"; import { type FunctionCallStandardModule, type ToolContext } from "./types.js"; type CodeEntry = { key: string; filename: string; dirname: string; fullpath: string; stat: Stats; }; export declare const defineFunctionCalls: (dir: string) => Promise>; export type FunctionCallsMap = Awaited>; /** * Creates a context object to be passed to a function call. * Crucially, it creates a renderer scoped to the current session. * @param sessionId - The session ID of the user triggering the function call. */ export declare function createFunctionCallContext(sessionId: string): ToolContext; export {}; //# sourceMappingURL=function_call.d.ts.map