export interface GasPriceInfo { legacy?: { gasPrice: string; }; eip1559?: { maxFeePerGas: string; maxPriorityFeePerGas: string; baseFeePerGas?: string; }; blockNumber?: number; } export declare class GasPriceService { private provider; constructor(rpcUrl: string); getGasPrice(): Promise; } //# sourceMappingURL=gas-price.service.d.ts.map