type FeeStatus = "loading" | "error" | "success"; export declare function getCombinedFeeTooltipText(maxFee?: bigint, feeTokenBalance?: bigint): { status: FeeStatus; message: string; }; export declare function getTooltipText(maxFee?: bigint, feeTokenBalance?: bigint): "Network fee is still loading." | "Network fees are paid to the network to include transactions in blocks" | "Insufficient balance to pay network fees. You need to add more funds to be able to execute the transaction."; export {};