import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PayoutSummary } from "./payoutsummary.js"; export type PayoutSummaries = { /** * 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 PayoutSummaries$inboundSchema: z.ZodType; export declare function payoutSummariesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payoutsummaries.d.ts.map