import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of change being applied to record in third party platform. */ export declare const PushChangeType: { readonly Unknown: "Unknown"; readonly Created: "Created"; readonly Modified: "Modified"; readonly Deleted: "Deleted"; readonly AttachmentUploaded: "AttachmentUploaded"; }; /** * Type of change being applied to record in third party platform. */ export type PushChangeType = ClosedEnum; /** @internal */ export declare const PushChangeType$inboundSchema: z.ZodNativeEnum; //# sourceMappingURL=pushchangetype.d.ts.map