import React from 'react';
export interface IGaugeProps {
title: React.ReactNode;
color?: string; height: number; bgColor?: number; percent: number;
style?: React.CSSProperties;
}
export default class Gauge extends React.Component<IGaugeProps, any> {}