import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BalanceDisputeMetadata = { transactionId: string; disputeId: string; orderId?: string | undefined; orderCreatedAt?: string | undefined; productId?: string | undefined; subscriptionId?: string | undefined; amount: number; currency: string; presentmentAmount: number; presentmentCurrency: string; taxAmount: number; taxState?: string | null | undefined; taxCountry?: string | null | undefined; fee: number; exchangeRate?: number | undefined; }; /** @internal */ export declare const BalanceDisputeMetadata$inboundSchema: z.ZodMiniType; export declare function balanceDisputeMetadataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=balancedisputemetadata.d.ts.map