interface TotalProps { total: number | string; coinSymbol: string; hint?: string; title?: string; className?: string; decimals?: number; } export declare function Total({ total, coinSymbol, hint, title, className, decimals }: TotalProps): import("react/jsx-runtime").JSX.Element; export {};