import { BlockchainSymbol, SwapType } from '../../../constants'; export declare class SwapRouterQuoteDto { mintFrom: string; mintTo: string; chainId?: BlockchainSymbol; amountIn?: string; amountOut?: string; swapType: SwapType; slippageBps: number; feeBps?: number; feeMintAddress: string; }