import type { ReactElement } from 'react'; type StatisticCardProps = { [key: `data-${string}`]: unknown; className?: string; icon?: ReactElement; label: string; value: number; }; export declare const StatisticCard: ({ className, icon, label, value, ...props }: StatisticCardProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=StatisticCard.d.ts.map