import { BigNumber } from 'ethers'; import { P2PPaymentDepositExitStates } from '../constants'; import { P2PPaymentDepositWithdrawal } from './p2p-payment-deposit-withdrawal'; export declare class P2PPaymentDeposit { latestWithdrawal: P2PPaymentDepositWithdrawal; address: string; owner: string; token: string; exitState: P2PPaymentDepositExitStates; totalAmount: BigNumber; pendingAmount: BigNumber; lockedAmount: BigNumber; withdrawAmount: BigNumber; availableAmount: BigNumber; createdAt: Date; updatedAt: Date; }