import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ethermint.feemarket.v1"; /** Params defines the EVM module parameters */ export interface Params { /** no_base_fee forces the EIP-1559 base fee to 0 (needed for 0 price calls) */ noBaseFee: boolean; /** * base_fee_change_denominator bounds the amount the base fee can change * between blocks. */ baseFeeChangeDenominator: number; /** * elasticity_multiplier bounds the maximum gas limit an EIP-1559 block may * have. */ elasticityMultiplier: number; /** enable_height defines at which block height the base fee calculation is enabled. */ enableHeight: Long; /** base_fee for EIP-1559 blocks. */ baseFee: string; /** min_gas_price defines the minimum gas price value for cosmos and eth transactions */ minGasPrice: string; /** * min_gas_multiplier bounds the minimum gas used to be charged * to senders based on gas limit */ minGasMultiplier: string; } export declare const Params: { encode(message: Params, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; create(base?: DeepPartial): Params; fromPartial(object: DeepPartial): Params; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};