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