import React from 'react'; interface MetricValueProps { value: string | number; label: string; className?: string; } /** * Displays a numeric/short textual value followed by a smaller grey label. * Example: 30s Generation Time */ export declare function MetricValue({ value, label, className }: MetricValueProps): React.JSX.Element; export {}; //# sourceMappingURL=metric-value.d.ts.map