import React from 'react'; import BarGauge from './metric-card-bar-gauge'; import Footer from './metric-card-footer'; type CardProps = { className?: string; hoverable?: boolean; }; export interface MetricCardProps extends CardProps { title: string | React.ReactNode; value: number | React.ReactElement; unit?: string; locale?: string; digits: number; loading: boolean; } declare const defaultProps: { className: string; locale: string; digits: number; loading: boolean; }; type NativeAttrs = Omit, keyof MetricCardProps>; export type RowProps = MetricCardProps & typeof defaultProps & NativeAttrs; type MemoCardComponent

= React.NamedExoticComponent

& { BarGauge: typeof BarGauge; Footer: typeof Footer; }; type ComponentProps = CardProps & Partial & Omit & NativeAttrs; declare const _default: MemoCardComponent; export default _default;