import { z } from 'zod'; import { Tool } from '../../core/types.js'; import { SelectorType } from './lib/types.js'; declare const parameterSchema: z.ZodObject<{ instanceId: z.ZodString; actionType: z.ZodEnum<["goto", "click", "type", "wait", "content", "close"]>; url: z.ZodOptional; selector: z.ZodOptional; selectorType: z.ZodOptional>; text: z.ZodOptional; description: z.ZodString; }, "strip", z.ZodTypeAny, { description: string; instanceId: string; actionType: "goto" | "click" | "type" | "wait" | "content" | "close"; text?: string | undefined; url?: string | undefined; selector?: string | undefined; selectorType?: SelectorType | undefined; }, { description: string; instanceId: string; actionType: "goto" | "click" | "type" | "wait" | "content" | "close"; text?: string | undefined; url?: string | undefined; selector?: string | undefined; selectorType?: SelectorType | undefined; }>; declare const returnSchema: z.ZodObject<{ status: z.ZodString; content: z.ZodOptional; error: z.ZodOptional; }, "strip", z.ZodTypeAny, { status: string; error?: string | undefined; content?: string | undefined; }, { status: string; error?: string | undefined; content?: string | undefined; }>; type Parameters = z.infer; type ReturnType = z.infer; export declare const sessionMessageTool: Tool; export {}; //# sourceMappingURL=sessionMessage.d.ts.map