import { z } from 'zod'; import { Tool } from '../../core/types.js'; declare const parameterSchema: z.ZodObject<{ prompt: z.ZodString; }, "strip", z.ZodTypeAny, { prompt: string; }, { prompt: string; }>; declare const returnSchema: z.ZodObject<{ userText: z.ZodString; }, "strip", z.ZodTypeAny, { userText: string; }, { userText: string; }>; type Parameters = z.infer; type ReturnType = z.infer; export declare const userPromptTool: Tool; export {}; //# sourceMappingURL=userPrompt.d.ts.map