import { providers } from 'ethers'; import { AssetConfig } from '../../types'; export declare const univ2PairABI: { constant: boolean; inputs: never[]; name: string; outputs: { internalType: string; name: string; type: string; }[]; payable: boolean; stateMutability: string; type: string; }[]; /** * Get the token price from the specified univ2 pair contract. * @param domain - The domain id. * @param pair - The pair contract address. * @param token0 - The token0 asset. * @param token1 - The token1 asset * @returns The token0 price */ export declare const getTokenPriceFromUniV2: (domain: string, pair: string, token0: AssetConfig, token1: AssetConfig, provier: providers.JsonRpcProvider) => Promise; //# sourceMappingURL=univ2.d.ts.map