import { Token } from '@uniswap/sdk-core'; import { type ChainConfig } from '../chains'; import type { v3Pool } from '@/types/sdk'; export declare const getV3Quote: (chainConfig: ChainConfig, tokenIn: Token, tokenOut: Token, pool: v3Pool, amountIn: bigint, sqrtPriceLimitX96?: bigint) => Promise<{ amountOut: bigint; sqrtPriceX96After: bigint; slippageBps: number; }>; //# sourceMappingURL=getV3Quote.d.ts.map