/** * @fileoverview Statistic card with number, label, and optional icon. * @author Saasflareâ„¢ * Complements the existing MetricCard with a simpler, marketing-focused * variant for stats sections ("10K+ users", "99.9% uptime"). * @module packages/ui/components/ui/stat-card * @package ui * * @component * @example * import { StatCard } from '@saasflare/ui'; * * * @example * } /> */ import { type ReactNode } from "react"; import { type SaasflareComponentProps } from "../../providers"; /** Props for the StatCard component. */ export interface StatCardProps extends SaasflareComponentProps { /** The stat value (e.g. "10K+", "99.9%", "$2.4M"). */ value: string; /** Label describing the stat. */ label: string; /** Optional icon displayed above the value. */ icon?: ReactNode; /** Additional class names. */ className?: string; } /** * Simple statistic display card for marketing sections. * * @component * @package ui */ export declare function StatCard({ value, label, icon, className, surface, radius, animated, iconWeight, }: StatCardProps): import("react/jsx-runtime").JSX.Element;