import { FeeData } from '../interface';
export interface PriceContainerProps {
    serviceFee: FeeData;
    creatorFee: FeeData;
    totalPrice?: FeeData;
    ethIcon?: string;
    tooltipTitle?: string;
}
declare const PriceContainer: ({ creatorFee, serviceFee, totalPrice, ethIcon, tooltipTitle, }: PriceContainerProps) => import("react/jsx-runtime").JSX.Element;
export default PriceContainer;
