import { EIP1559GasPrice } from "../types";
interface GetGasPricesRes {
    baseFee: string;
    slow: EIP1559GasPrice;
    average: EIP1559GasPrice;
    fast: EIP1559GasPrice;
    fastest: EIP1559GasPrice;
}
export declare const getGasPrices: ({ rpcUrl, chainId, historicalBlocks, tries, futureBlocks, }: {
    rpcUrl: string;
    chainId: number;
    historicalBlocks?: number;
    tries?: number;
    futureBlocks?: number;
}) => Promise<GetGasPricesRes>;
export {};
//# sourceMappingURL=gas.d.ts.map