import type { ComponentType } from "react"; export interface StatsCardProps { title: string; value: string; icon: ComponentType<{ className?: string; }>; description: string; trend?: { value: number; label?: string; }; } /** A metric card with an optional positive/negative percentage trend. */ export declare function StatsCard({ title, value, icon: Icon, description, trend, }: StatsCardProps): import("react").JSX.Element; //# sourceMappingURL=StatsCard.d.ts.map