import { ReactNode, default as React } from 'react'; import { IconName } from '../Icon/IconName'; export interface StatsCardProps { /** * The main value displayed in the stats card. * This is typically a numeric value or a string that represents a statistic. */ value: string; /** * The title displayed on the stats card. */ title: string; /** * Optional icon to display on the top left corner of the stats card. */ icon?: IconName; /** * Tooltip content to display when hovering over the info icon. */ tooltip?: ReactNode; /** * Optional description to display below the title. */ description?: string; } export declare const StatsCard: React.FC;