import { ReactNode } from 'react'; export interface StatsSimpleCardProps { isLoading?: boolean; value?: number; title?: string; unit?: string; icon?: ReactNode; } export declare const StatsSimpleCard: ({ isLoading, title, value, unit, icon }: StatsSimpleCardProps) => import("react/jsx-runtime").JSX.Element;