import BigNumber from 'bignumber.js'; import { PriceToken } from '../../tokens/price-token'; export interface FeeInfo { rubicProxy: { fixedFee: FixedFee; platformFee: PlatformFee; } | null; provider: { fixedFee: FixedFee; } | null; } export interface FixedFee { amount: BigNumber; token: PriceToken; } export interface PlatformFee { percent: number; token: PriceToken; }