import { z } from 'zod'; import type { AgentToolProtocolClient } from '../client.js'; import { type Tool } from './types.js'; export declare const executeCodeInputSchema: z.ZodObject<{ code: z.ZodString; timeout: z.ZodOptional; maxMemory: z.ZodOptional; }, "strip", z.ZodTypeAny, { code: string; timeout?: number | undefined; maxMemory?: number | undefined; }, { code: string; timeout?: number | undefined; maxMemory?: number | undefined; }>; type ExecuteCodeInput = z.infer; export declare function createExecuteCodeTool(client: AgentToolProtocolClient): Tool; export {}; //# sourceMappingURL=execute-code.d.ts.map