import * as z from "zod/v4"; import * as models from "../index.js"; export type CreateDeploymentGroupTokenGlobals = { /** * 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 CreateDeploymentGroupTokenRequest = { /** * Unique identifier for the deployment group. */ id: string; createDeploymentGroupTokenRequest?: models.CreateDeploymentGroupTokenRequest | undefined; }; /** @internal */ export type CreateDeploymentGroupTokenRequest$Outbound = { id: string; CreateDeploymentGroupTokenRequest?: models.CreateDeploymentGroupTokenRequest$Outbound | undefined; }; /** @internal */ export declare const CreateDeploymentGroupTokenRequest$outboundSchema: z.ZodType; export declare function createDeploymentGroupTokenRequestToJSON(createDeploymentGroupTokenRequest: CreateDeploymentGroupTokenRequest): string; //# sourceMappingURL=createdeploymentgrouptoken.d.ts.map