import { Coin, CoinAmount, SecondaryFee } from '../types'; export declare class Fees { private secondaryFees; private amount; constructor(secondaryFees: SecondaryFee[], token: Coin); get token(): Coin; addAmount(amount: CoinAmount): void; amountWithFeesApplied(): CoinAmount; amountLessFees(): CoinAmount; withAmounts(): { amount: CoinAmount; recipient: string; basisPoints: number; }[]; private total; }