import { CurrencyAmount } from '../../CurrencyAmount';
import { CurrencyFee } from '../../CurrencyFee';
export declare class EvmFee extends CurrencyFee {
    readonly maxFeePerGas: CurrencyAmount;
    readonly maxPriorityFeePerGas: CurrencyAmount;
    constructor(maxFeePerGas: CurrencyAmount, maxPriorityFeePerGas: CurrencyAmount, isApproximate: boolean, enoughFunds: boolean, confirmationTimeSecs?: number, feeAmount?: CurrencyAmount);
}
