import * as z from "zod/v4"; export type CreateDeploymentTokenRequest = { /** * Optional description for the deployment token */ description: string | null; /** * Optional expiration date for the deployment token */ expiresAt?: Date | null | undefined; }; /** @internal */ export type CreateDeploymentTokenRequest$Outbound = { description: string | null; expiresAt?: string | null | undefined; }; /** @internal */ export declare const CreateDeploymentTokenRequest$outboundSchema: z.ZodType; export declare function createDeploymentTokenRequestToJSON(createDeploymentTokenRequest: CreateDeploymentTokenRequest): string; //# sourceMappingURL=createdeploymenttokenrequest.d.ts.map