import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Settlement } from "./settlement.js"; /** * A list of settlement records for a transaction. */ export type Settlements = { /** * The list of settlement objects. */ items: Array; }; /** @internal */ export declare const Settlements$inboundSchema: z.ZodType; export declare function settlementsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=settlements.d.ts.map