/** * @prettier */ import { BitGoBase } from '../bitgoBase'; import { ITradingPartner, TradingAccount, TradingPartnerStatus, TradingPartnerType } from '../trading'; export declare class TradingPartner implements ITradingPartner { private bitgo; private enterpriseId; private currentAccount; id: string; primaryEnterpriseName: string; primaryAccountId: string; secondaryEnterpriseName: string; secondaryAccountId: string; requesterAccountId: string; status: TradingPartnerStatus; type: TradingPartnerType; constructor(tradingPartnerData: any, bitgo: BitGoBase, enterpriseId: string, currentAccount: TradingAccount); /** * Check if a trading partner has enough funds to cover the cost of a trade. * @param currency the currency to check * @param amount the amount of currency to check, represented in base units (such as cents, satoshi, or wei) */ checkBalance(currency: string, amount: string): Promise; } //# sourceMappingURL=tradingPartner.d.ts.map