import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Event, Event$Outbound } from "./event.js"; import { SeekPagination, SeekPagination$Outbound } from "./seekpagination.js"; /** * Paginated list of events. */ export type EventPaginatedResult = { /** * Array of event objects. */ models?: Array | undefined; /** * Cursor-based pagination metadata for list responses. */ pagination?: SeekPagination | undefined; }; /** @internal */ export declare const EventPaginatedResult$inboundSchema: z.ZodType; /** @internal */ export type EventPaginatedResult$Outbound = { models?: Array | undefined; pagination?: SeekPagination$Outbound | undefined; }; /** @internal */ export declare const EventPaginatedResult$outboundSchema: z.ZodType; export declare function eventPaginatedResultToJSON(eventPaginatedResult: EventPaginatedResult): string; export declare function eventPaginatedResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eventpaginatedresult.d.ts.map