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