import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EventAssetChange } from "./eventassetchange.js"; import { EventStatusChange } from "./eventstatuschange.js"; export type CollectionEvent = { assetChange?: EventAssetChange | undefined; statusChange?: EventStatusChange | undefined; }; /** @internal */ export declare const CollectionEvent$inboundSchema: z.ZodType; export declare function collectionEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectionevent.d.ts.map