import { z } from "zod"; import type { ToolDefinition, ToolHandler } from "../types.js"; export declare const name = "sampleLLM"; export declare const schema: z.ZodObject<{ prompt: z.ZodString; maxTokens: z.ZodDefault; }, z.core.$strip>; export declare const definition: ToolDefinition; export declare const handler: ToolHandler; //# sourceMappingURL=sampleLlm.d.ts.map