import { z } from 'zod'; import type { RemoteConsoleClient } from '../ws-client'; export declare const executeJsSchema: { sessionId: z.ZodString; code: z.ZodString; timeout: z.ZodOptional; }; export declare function executeJsHandler(client: RemoteConsoleClient): (args: { sessionId: string; code: string; timeout?: number; }) => Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: undefined; }>;