import * as z from "zod/v4"; export type GetDebugSessionGlobals = { /** * 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 GetDebugSessionRequest = { /** * Unique identifier for the debug session. */ id: string; }; /** @internal */ export type GetDebugSessionRequest$Outbound = { id: string; }; /** @internal */ export declare const GetDebugSessionRequest$outboundSchema: z.ZodType; export declare function getDebugSessionRequestToJSON(getDebugSessionRequest: GetDebugSessionRequest): string; //# sourceMappingURL=getdebugsession.d.ts.map