import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js"; /** * A detailed breakdown of account fees. */ export type AccountFees = { /** * Fees associated with wallet services. */ walletFee: AmountDecimal; /** * Fees for PCI compliance. */ merchantPCIFee: AmountDecimal; /** * Fees for business verification. */ kybFee?: AmountDecimal | undefined; /** * Fees for customer verification. */ kycFee?: AmountDecimal | undefined; /** * Fees for transaction risk monitoring. */ transactionMonitoringFee?: AmountDecimal | undefined; /** * Total platform fees. */ total: AmountDecimal; }; /** @internal */ export declare const AccountFees$inboundSchema: z.ZodType; /** @internal */ export type AccountFees$Outbound = { walletFee: AmountDecimal$Outbound; merchantPCIFee: AmountDecimal$Outbound; kybFee?: AmountDecimal$Outbound | undefined; kycFee?: AmountDecimal$Outbound | undefined; transactionMonitoringFee?: AmountDecimal$Outbound | undefined; total: AmountDecimal$Outbound; }; /** @internal */ export declare const AccountFees$outboundSchema: z.ZodType; export declare function accountFeesToJSON(accountFees: AccountFees): string; export declare function accountFeesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountfees.d.ts.map