import { default as React } from 'react'; import { VariantProps } from 'class-variance-authority'; declare const statVariants: (props?: ({ variant?: "default" | "filled" | "bordered" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; export interface StatProps extends React.HTMLAttributes, VariantProps { children?: React.ReactNode; /** Main label for the statistic */ label: string; /** The numeric or text value */ value: string | number; /** Optional helper text or description */ helpText?: string; /** Trend indicator */ trend?: 'up' | 'down' | 'neutral'; /** Trend value (e.g., "+12%", "-5%") */ trendValue?: string; /** Icon to display next to label */ icon?: React.ReactNode; } export declare const Stat: React.ForwardRefExoticComponent>; export interface StatGroupProps extends React.HTMLAttributes { children: React.ReactNode; /** Number of columns */ columns?: 1 | 2 | 3 | 4; } export declare const StatGroup: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Stat.d.ts.map