///
interface Metric {
label: string;
icon?: React.ReactNode;
value: number | string;
hideOnMobile?: boolean;
suffix?: string;
precision?: number;
}
interface AggregatedMetricsProps extends React.HTMLAttributes {
metrics: Metric[];
}
export declare function AggregatedMetrics({ metrics, className, ...props }: AggregatedMetricsProps): import("react/jsx-runtime").JSX.Element;
export {};