import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The current status of the push operation. */ export declare const PushOperationStatus: { readonly Pending: "Pending"; readonly Failed: "Failed"; readonly Success: "Success"; readonly TimedOut: "TimedOut"; }; /** * The current status of the push operation. */ export type PushOperationStatus = ClosedEnum; /** @internal */ export declare const PushOperationStatus$inboundSchema: z.ZodNativeEnum; //# sourceMappingURL=pushoperationstatus.d.ts.map