import { Currency, CurrencyAmount, Price } from '@pancakeswap/sdk'; import { Graph, Vertice } from '../types'; type Params = { graph: Graph; quote: Vertice; gasPriceWei: bigint; }; export type PriceCalculator = ReturnType; export declare function createPriceCalculator({ graph, quote, gasPriceWei }: Params): { graph: Graph; getGasPriceInBase: (base: Vertice) => CurrencyAmount | undefined; getQuotePrice: (base: Vertice) => Price | undefined; getPrice: (base: Vertice, targetQuote: Vertice) => Price | undefined; }; export {}; //# sourceMappingURL=priceCalculator.d.ts.map