import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CollectionEvent } from "./collectionevent.js"; export type CollectionEventsResponse = { events: Array | null; nextPage: string; }; /** @internal */ export declare const CollectionEventsResponse$inboundSchema: z.ZodType; export declare function collectionEventsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectioneventsresponse.d.ts.map