import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TransactionEvent } from "./transactionevent.js"; export type TransactionEvents = { /** * A list of items returned for this request. */ items: Array; /** * The number of items for this page. */ limit: number; /** * The cursor pointing at the next page of items. */ nextCursor?: string | null | undefined; /** * The cursor pointing at the previous page of items. */ previousCursor?: string | null | undefined; }; /** @internal */ export declare const TransactionEvents$inboundSchema: z.ZodType; export declare function transactionEventsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transactionevents.d.ts.map