import { type HTMLAttributes } from "react";
export interface StatsProps extends HTMLAttributes {
}
export declare const Stats: import("react").ForwardRefExoticComponent>;
export interface StatItemProps extends HTMLAttributes {
value: string;
label: string;
/** Optional description / sub-text below the label */
description?: string;
}
export declare const StatItem: import("react").ForwardRefExoticComponent>;