interface FeesSectionProps { className?: string; feeRate?: number | string; onFeeRateEdit?: () => void; feeAmount?: number | string; coinSymbol?: string; feeAmountHint?: string; total?: number | string; totalHint?: string; bbnFeeAmount?: number | string; bbnCoinSymbol?: string; bbnFeeAmountHint?: string; bbnFeeDecimals?: number; } export declare function FeesSection({ className, feeRate, onFeeRateEdit, feeAmount, coinSymbol, feeAmountHint, total, totalHint, bbnFeeAmount, bbnCoinSymbol, bbnFeeAmountHint, bbnFeeDecimals, }: FeesSectionProps): import("react/jsx-runtime").JSX.Element; export {};