import type { ComponentType } from "react"; export interface MetricCardProps { title: string; value: string | number | null; icon?: ComponentType<{ className?: string; }>; description?: string; loading?: boolean; error?: string; } /** A compact, data-source-agnostic dashboard metric. */ export declare function MetricCard({ title, value, icon: Icon, description, loading, error, }: MetricCardProps): import("react").JSX.Element; //# sourceMappingURL=MetricCard.d.ts.map