import * as z from "zod/v4"; import * as models from "../index.js"; export type UpdateDebugSessionGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type UpdateDebugSessionRequest = { /** * Unique identifier for the debug session. */ id: string; updateDebugSessionRequest?: models.UpdateDebugSessionRequest | undefined; }; /** @internal */ export type UpdateDebugSessionRequest$Outbound = { id: string; UpdateDebugSessionRequest?: models.UpdateDebugSessionRequest$Outbound | undefined; }; /** @internal */ export declare const UpdateDebugSessionRequest$outboundSchema: z.ZodType; export declare function updateDebugSessionRequestToJSON(updateDebugSessionRequest: UpdateDebugSessionRequest): string; //# sourceMappingURL=updatedebugsession.d.ts.map