import * as z from "zod/v4"; export type CreateFirstPartyDeploymentSessionGlobals = { /** * 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 CreateFirstPartyDeploymentSessionRequest = { /** * Unique identifier for the deployment group. */ id: string; }; /** @internal */ export type CreateFirstPartyDeploymentSessionRequest$Outbound = { id: string; }; /** @internal */ export declare const CreateFirstPartyDeploymentSessionRequest$outboundSchema: z.ZodType; export declare function createFirstPartyDeploymentSessionRequestToJSON(createFirstPartyDeploymentSessionRequest: CreateFirstPartyDeploymentSessionRequest): string; //# sourceMappingURL=createfirstpartydeploymentsession.d.ts.map