import { BigNumber } from 'ethers'; import { P2PPaymentChannelStates } from '../constants'; import { P2PPaymentChannelPayment } from './p2p-payment-channel-payment'; export declare class P2PPaymentChannel { hash: string; latestPayment: P2PPaymentChannelPayment; sender: string; recipient: string; token: string; uid: string; state: P2PPaymentChannelStates; endangered: boolean; totalAmount: BigNumber; committedAmount: BigNumber; projectKey: string; createdAt: Date; updatedAt: Date; }