import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of change */ export declare const DiffActionEnum: { readonly Added: "added"; readonly Modified: "modified"; readonly Deleted: "deleted"; readonly Unchanged: "unchanged"; readonly Moved: "moved"; }; /** * Type of change */ export type DiffActionEnum = ClosedEnum; /** @internal */ export declare const DiffActionEnum$inboundSchema: z.ZodNativeEnum; //# sourceMappingURL=diffactionenum.d.ts.map