import { GasFeeInterface } from './gas-fee.interface'; import { ProtocolFeeInterface } from './protocol-fee.interface'; import { ProviderFeeInterface } from './provider-fee.interface'; import { TokenInerface } from './token.inerface'; import { PercentFeeInterface } from './percent-fee.interface'; export interface FeesInterface { gasTokenFees: { gas: GasFeeInterface; protocol: ProtocolFeeInterface; provider: ProviderFeeInterface; nativeToken: TokenInerface; }; percentFees: PercentFeeInterface; }