import { IkasListOrderTransactionWithPricesRefundableTransaction } from "./list-order-transaction-refundable-transaction"; import { IkasTransactionWithPrices } from "./transaction-with-prices"; export declare type IkasOrderTransactionWithPrices = { chargedAmount: number | null; orderFinalPrice: number | null; pendingAmount: number | null; refundableTransactions: IkasListOrderTransactionWithPricesRefundableTransaction[]; refundedAmount: number | null; remainingBalance: number | null; transactions: IkasTransactionWithPrices[]; };