export interface AccountingEvent { paymentId: string; type: 'one_time' | 'subscription' | 'refund'; txTimeUtc: string; receiptUrl: string; relatedPaymentId?: string; productId: number; productName: string; productDescription: string; customerUuid: string; chain: string; blockNumberOrSlot: string; txHash: string; fromAddress: string; toAddress: string; tokenSymbol: string; currencyDecimals: number; tokenContractOrMint: string; explorerUrl: string; grossAmount: string; grossAmountUsd: number; platformFeePercent: number; platformFeeUsd: number; platformFee: string; organizationFeePercent: number; organizationFeeUsd: number; organizationFee: string; networkFeesUsd?: number; networkFees?: string; netAmountUsd: number; netAmount: string; } //# sourceMappingURL=accounting.d.ts.map