/** Stat — a KPI/metric summary tile (W2 §The Kit). */ import type { ReactNode } from "react"; import { type KitDensity, type KitStyled, type KitTone } from "../tokens.js"; export interface StatProps extends KitStyled { /** Metric name. */ label: string; /** The figure, DISPLAYED AS GIVEN — the screen formats it (`toLocaleString`) * and the tile does the typography. */ value: number | string; /** A unit written after the value — "ms", "min", "h". */ unit?: string; /** A trend / delta caption, e.g. "+12% MoM". */ trend?: string; /** Emphasis. "default" is the older spelling of "neutral". */ tone?: KitTone | "default"; /** Spacing scale for this tile. */ density?: KitDensity; /** A Kit mark beside the metric name. */ icon?: ReactNode; /** Kit value components rendered under the number — a Sparkline, an EnumBadge. */ children?: ReactNode; } export declare function Stat({ label, value, unit, trend, tone, density, icon, style, children }: StatProps): import("react").JSX.Element;