import { Dex, SwapRouterPoolType, SwapType } from '../../../constants'; import { TxPriorityDto } from '../../tx'; export declare class SwapRouterPrepareDto { dex: Dex; poolType?: SwapRouterPoolType; sender: string; poolId: string; mintFrom: string; mintTo: string; amountIn: string; amountOut: string; feeBps?: number; feeAmount?: string; feeMintAddress: string; swapType?: SwapType; priorityFee?: number; priority?: TxPriorityDto; }