import { AssetConfig } from '../../types'; import { providers } from 'ethers'; export declare const univ3PoolABI: { inputs: never[]; name: string; outputs: { internalType: string; name: string; type: string; }[]; stateMutability: string; type: string; }[]; /** * Get the token price from univ3 pool. * @param domain - The domain id. * @param pool - The pool address. * @param token0 - The token0 config. * @param token1 - The token1 config. * @returns The token0 price */ export declare const getTokenPriceFromUniV3: (domain: string, pool: string, token0: AssetConfig, token1: AssetConfig, provider: providers.JsonRpcProvider) => Promise; //# sourceMappingURL=univ3.d.ts.map