import type { Address } from 'viem'; type EstimatedFeesProps = { account: Address | undefined; to: Address | undefined; value: bigint | undefined; data: `0x${string}` | undefined; chainId: number | undefined; nativeSymbol: string; enabled?: boolean; hideInfoIcon?: boolean; }; export declare const EstimatedFees: ({ account, to, value, data, chainId, nativeSymbol, enabled, hideInfoIcon, }: EstimatedFeesProps) => import("react/jsx-runtime").JSX.Element; export {};