import { BaseElementProps, ElementColor } from "../../types"; /** Direction of a statistic trend */ export declare enum StatTrendDirection { Up = "up", Down = "down", Neutral = "neutral" } /** Trend indicator attached to a stat */ export type StatTrend = { /** Trend label, e.g. "+12%" */ label: string; /** Visual direction */ direction: StatTrendDirection; }; /** Stat component props */ export type StatProps = BaseElementProps & { /** Primary numeric or text value */ value: string | number; /** Descriptive label shown below the value */ label: string; /** Bootstrap icon name (without `bi-` prefix) */ icon?: string; /** * Accent colour applied to the icon badge. * @default ElementColor.Primary */ color?: ElementColor; /** Optional trend badge */ trend?: StatTrend; }; //# sourceMappingURL=types.d.ts.map