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