import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type V2DeployCreateDeploymentResponseData = {
    /**
     * Unique deployment identifier
     */
    deploymentId: string;
};
/** @internal */
export declare const V2DeployCreateDeploymentResponseData$inboundSchema: z.ZodType<V2DeployCreateDeploymentResponseData, z.ZodTypeDef, unknown>;
export declare function v2DeployCreateDeploymentResponseDataFromJSON(jsonString: string): SafeParseResult<V2DeployCreateDeploymentResponseData, SDKValidationError>;
//# sourceMappingURL=v2deploycreatedeploymentresponsedata.d.ts.map