import { z } from 'zod'; import { Tool } from '../../core/types.js'; declare const parameterSchema: z.ZodObject<{ url: z.ZodOptional; timeout: z.ZodOptional; description: z.ZodString; }, "strip", z.ZodTypeAny, { description: string; url?: string | undefined; timeout?: number | undefined; }, { description: string; url?: string | undefined; timeout?: number | undefined; }>; declare const returnSchema: z.ZodObject<{ instanceId: z.ZodString; status: z.ZodString; content: z.ZodOptional; error: z.ZodOptional; }, "strip", z.ZodTypeAny, { status: string; instanceId: string; error?: string | undefined; content?: string | undefined; }, { status: string; instanceId: string; error?: string | undefined; content?: string | undefined; }>; type Parameters = z.infer; type ReturnType = z.infer; export declare const sessionStartTool: Tool; export {}; //# sourceMappingURL=sessionStart.d.ts.map