import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const ChangeType: { readonly Added: "added"; readonly Removed: "removed"; }; export type ChangeType = OpenEnum; export type EventAssetChange = { changeType: ChangeType; eventTime: Date; reason: string; }; /** @internal */ export declare const ChangeType$inboundSchema: z.ZodType; /** @internal */ export declare const EventAssetChange$inboundSchema: z.ZodType; export declare function eventAssetChangeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eventassetchange.d.ts.map