import React from 'react'; import { ProgressColors } from '../progress/progress'; export interface MetricCardBarGaugeProps { value: number; min?: number; max?: number; average?: number; className?: string; color?: string; colors?: ProgressColors; loading: boolean; } declare const defaultProps: { min: number; max: number; className: string; loading: boolean; }; type NativeAttrs = Omit, keyof MetricCardBarGaugeProps>; export type MetricCardBarGaugeComponentProps = MetricCardBarGaugeProps & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit>; export default _default;