export declare const calculateTxFee: (gasLimit: string, maxFeePerGas: string) => string; export declare const calculateRoughFees: (gasLimits: { [protocolName: string]: { estimatedGas: string; }; } | null, gasPrice: string) => { [protocolName: string]: string; };