import { PropsWithChildren } from 'react'; interface FeeItemProps extends PropsWithChildren { title: string; className?: string; hint?: string; } export declare function FeeItem({ title, children, className, hint }: FeeItemProps): import("react/jsx-runtime").JSX.Element; export {};