export type RecommendGasPriceParamsType = { transactionDataLength: number; transactionGasLimit: number; ppu: number; }; export declare function recommendGasPrice({ transactionDataLength, transactionGasLimit, ppu }: RecommendGasPriceParamsType): number;