export interface FeeContainerProps {
    title: string;
    cryptoPrice: string;
    usdPrice: string;
    ethIcon?: string;
    isTotalPrice?: boolean;
    totalPriceFontSize?: number;
}
declare const FeeContainer: ({ title, cryptoPrice, usdPrice, ethIcon, isTotalPrice, totalPriceFontSize, }: FeeContainerProps) => import("react/jsx-runtime").JSX.Element;
export default FeeContainer;
