import { BigNumber } from 'ethers'; /** * function`getReserves` of UniswapV2Pair returns uint112 type, * so we simply divide the reserve of quote token into the reserve of base token * e.g ETH/DAI reserve of Dai / the reserve of WETH * If there is no direct path or unconnected, the call returns `undefined` * * @param baseCurrency address of base token (e.g ETH address) * @param quoteCurrency address of quote token (e.g DAI address) * @param overrides optional factory address (For Sushiswap, default Uniswap V2 Factory) * @returns peek price */ export declare function useUniswapPrice(baseCurrency: string, quoteCurrency: string, overrides?: { factory?: string; initCodeHash?: string; digits?: number; }): BigNumber | undefined; //# sourceMappingURL=useUniswapPrice.d.ts.map