import * as z from "zod/v4"; import { DebugSessionState } from "./debugsessionstate.js"; export type UpdateDebugSessionRequest = { state?: DebugSessionState | undefined; error?: { [k: string]: any | null; } | null | undefined; expiresAt?: Date | undefined; }; /** @internal */ export type UpdateDebugSessionRequest$Outbound = { state?: string | undefined; error?: { [k: string]: any | null; } | null | undefined; expiresAt?: string | undefined; }; /** @internal */ export declare const UpdateDebugSessionRequest$outboundSchema: z.ZodType; export declare function updateDebugSessionRequestToJSON(updateDebugSessionRequest: UpdateDebugSessionRequest): string; //# sourceMappingURL=updatedebugsessionrequest.d.ts.map