import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { DeploymentCredentialRotation } from "./deploymentcredentialrotation.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type DeploymentCredentialRotationStatus = { /** * Unique identifier for the deployment. */ deploymentId: string; revision: number; rotation: DeploymentCredentialRotation | null; }; /** @internal */ export declare const DeploymentCredentialRotationStatus$inboundSchema: z.ZodType; export declare function deploymentCredentialRotationStatusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deploymentcredentialrotationstatus.d.ts.map