import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const ApplyContainerRegistrySnapshotResponseStatus: { readonly Applying: "applying"; readonly Connected: "connected"; readonly Degraded: "degraded"; readonly Revoked: "revoked"; }; export type ApplyContainerRegistrySnapshotResponseStatus = ClosedEnum; export type ApplyContainerRegistrySnapshotResponse = { appliedRevision: number; status: ApplyContainerRegistrySnapshotResponseStatus; }; /** @internal */ export declare const ApplyContainerRegistrySnapshotResponseStatus$inboundSchema: z.ZodEnum; /** @internal */ export declare const ApplyContainerRegistrySnapshotResponse$inboundSchema: z.ZodType; export declare function applyContainerRegistrySnapshotResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=applycontainerregistrysnapshotresponse.d.ts.map