import * as z from "zod/v4"; export type ApproveAgentSessionGlobals = { /** * 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 ApproveAgentSessionRequest = { id: string; }; /** @internal */ export type ApproveAgentSessionRequest$Outbound = { id: string; }; /** @internal */ export declare const ApproveAgentSessionRequest$outboundSchema: z.ZodType; export declare function approveAgentSessionRequestToJSON(approveAgentSessionRequest: ApproveAgentSessionRequest): string; //# sourceMappingURL=approveagentsession.d.ts.map