import type Anthropic from "@anthropic-ai/sdk"; import type { ReplContext } from "./types.js"; export declare function getAllTools(): Anthropic.Tool[]; export declare function executeTool(name: string, args: Record, context: ReplContext): Promise<{ result: string; isError: boolean; }>; //# sourceMappingURL=tools.d.ts.map