import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MerchantAccountSummary = { type: "merchant-account"; id: string; displayName: string; createdAt: Date; updatedAt: Date; overCaptureAmount?: number | null | undefined; overCapturePercentage?: number | null | undefined; }; /** @internal */ export declare const MerchantAccountSummary$inboundSchema: z.ZodType; export declare function merchantAccountSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=merchantaccountsummary.d.ts.map