import { Payment } from "./Payment"; import { PublicIdentifier } from "./PublicIdentifier"; import { PullPayment } from "./PullPayment"; import { PushPayment } from "./PushPayment"; export declare class HypernetLink { counterPartyAccount: PublicIdentifier; payments: Payment[]; pushPayments: PushPayment[]; pullPayments: PullPayment[]; activePushPayments: PushPayment[]; activePullPayments: PullPayment[]; constructor(counterPartyAccount: PublicIdentifier, payments: Payment[], pushPayments: PushPayment[], pullPayments: PullPayment[], activePushPayments: PushPayment[], activePullPayments: PullPayment[]); } //# sourceMappingURL=HypernetLink.d.ts.map