import type { TFunction } from 'i18next'; import type { ReactElement } from 'react'; import type { FeesBreakdown } from '../utils/fees.js'; export interface FeeBreakdownTooltipProps { gasCosts?: FeesBreakdown[]; feeCosts?: FeesBreakdown[]; children: ReactElement; } export declare const FeeBreakdownTooltip: React.FC; export declare const getFeeBreakdownTypography: (fees: FeesBreakdown[], t: TFunction) => import("react/jsx-runtime").JSX.Element[];