import { Entity } from '../../entity'; import { Dex, SwapRouterPoolType } from '../../../constants'; export declare class SwapRouterQuote extends Entity { poolId: string; dex: Dex; poolType: SwapRouterPoolType; amountOut: string; amountOutWithFee: string; amountIn: string; amountInWithFee: string; feeAmount: string; feeMintAddress: string; }