import React from 'react'; interface StatProps { label: string; value: string; icon?: React.ElementType; helpText?: string; indicator?: 'up' | 'down'; change?: string; } export declare const Stat: React.FC; export {};