import * as react from 'react'; import { HTMLAttributes, ReactNode } from 'react'; interface StatProps extends HTMLAttributes { /** The figure itself — `"2016"`, `"120+"`, `"08"`. */ value?: ReactNode; /** The caption under it. */ label?: ReactNode; size?: "sm" | "md" | "lg"; } interface StatBandProps extends HTMLAttributes { /** Columns in the band. Default `4`. */ columns?: number; } declare const Stat: react.ForwardRefExoticComponent> & { Band: react.ForwardRefExoticComponent>; }; /** * The row a set of ``s sits in. * * A plain grid, but it is the reason `` defaults to `tabular-nums`: a * figure alone can be proportional without anyone noticing, and only becomes * wrong once it has neighbours to fail to line up with. */ declare const StatBand: react.ForwardRefExoticComponent>; export { Stat, StatBand, type StatBandProps, type StatProps };