import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CreateDeploymentTokenResponse = { /** * The generated deployment token (only shown once) */ token: string; /** * The deployment ID that this token is scoped to */ deploymentId: string; }; /** @internal */ export declare const CreateDeploymentTokenResponse$inboundSchema: z.ZodType; export declare function createDeploymentTokenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createdeploymenttokenresponse.d.ts.map