import { type HTMLAttributes } from "react"; export interface MetricChange { value: string; trend: "positive" | "negative"; } export interface MetricProps extends HTMLAttributes { label: string; value: string | number; large?: boolean; change?: MetricChange; } export declare const Metric: import("react").ForwardRefExoticComponent>;