import { SwapType } from '../../../constants'; import { TxPriorityDto } from '../../tx'; export declare class PumpDexSwapPrepareDto { sender: string; poolId: string; mintFrom: string; mintTo: string; amountIn: string; amountOut: string; feeAmount?: string; feeBps?: number; feeMintAddress: string; swapType?: SwapType; priorityFee?: number; priority?: TxPriorityDto; slippageBps: number; }