import { BigintIsh, Currency } from '@wicchain/sdk'; import { GasModel, PoolProvider, PriceReferences } from './types'; type GasModelConfig = { gasPriceWei: BigintIsh | (() => Promise); blockNumber?: BigintIsh; poolProvider: PoolProvider; quoteCurrency: Currency; } & PriceReferences; export declare function createGasModel({ gasPriceWei, poolProvider, quoteCurrency, blockNumber, quoteCurrencyUsdPrice, nativeCurrencyUsdPrice, }: GasModelConfig): Promise; export {}; //# sourceMappingURL=gasModel.d.ts.map