import { BigNumber } from 'ethers'; import { P2PPaymentChannelPaymentStates } from '../constants'; export declare class P2PPaymentChannelPayment { state: P2PPaymentChannelPaymentStates; blockNumber: number; value: BigNumber; totalAmount: BigNumber; senderSignature: string; guardianSignature: string; createdAt: Date; updatedAt: Date; }