export default ProgressCircle; declare function ProgressCircle({ className, style, radius, strokeWidth, progress, showErrorRing, activeColor, innerPadding, outsideRingColor, outsideRingOpacity, insideRingColor, insideRingWidth, insideRingStrokeDash, errorRingWidth, errorRingColor, dashedRingColor, dashedRingOpacity, dashedRingWidth, dashedRingLineThick, dashedRingLineSpacing, dashedInsideRingColor, dashedInsideRingWidth, showOutsideRing, showInsideRing, showDashedRing, }: { className: any; style: any; radius: any; strokeWidth: any; progress: any; showErrorRing: any; activeColor: any; innerPadding: any; outsideRingColor: any; outsideRingOpacity: any; insideRingColor: any; insideRingWidth: any; insideRingStrokeDash: any; errorRingWidth: any; errorRingColor: any; dashedRingColor: any; dashedRingOpacity: any; dashedRingWidth: any; dashedRingLineThick: any; dashedRingLineSpacing: any; dashedInsideRingColor: any; dashedInsideRingWidth: any; showOutsideRing: any; showInsideRing: any; showDashedRing: any; }): React.JSX.Element; declare namespace ProgressCircle { namespace propTypes { let className: PropTypes.Requireable; let style: PropTypes.Requireable>; let radius: PropTypes.Requireable; let strokeWidth: PropTypes.Requireable; let progress: PropTypes.Requireable; let showErrorRing: PropTypes.Requireable; let activeColor: PropTypes.Requireable; let innerPadding: PropTypes.Requireable; let outsideRingColor: PropTypes.Requireable; let outsideRingOpacity: PropTypes.Requireable; let insideRingColor: PropTypes.Requireable; let insideRingWidth: PropTypes.Requireable; let insideRingStrokeDash: PropTypes.Requireable; let errorRingColor: PropTypes.Requireable; let errorRingWidth: PropTypes.Requireable; let dashedRingColor: PropTypes.Requireable; let dashedRingOpacity: PropTypes.Requireable; let dashedRingWidth: PropTypes.Requireable; let dashedRingLineThick: PropTypes.Requireable; let dashedRingLineSpacing: PropTypes.Requireable; let dashedInsideRingColor: PropTypes.Requireable; let dashedInsideRingWidth: PropTypes.Requireable; let showOutsideRing: PropTypes.Requireable; let showDashedRing: PropTypes.Requireable; let showInsideRing: PropTypes.Requireable; } namespace defaultProps { let className_1: string; export { className_1 as className }; let style_1: null; export { style_1 as style }; let radius_1: number; export { radius_1 as radius }; let strokeWidth_1: number; export { strokeWidth_1 as strokeWidth }; let progress_1: number; export { progress_1 as progress }; let showErrorRing_1: boolean; export { showErrorRing_1 as showErrorRing }; let activeColor_1: string; export { activeColor_1 as activeColor }; let innerPadding_1: number; export { innerPadding_1 as innerPadding }; let outsideRingColor_1: string; export { outsideRingColor_1 as outsideRingColor }; let outsideRingOpacity_1: number; export { outsideRingOpacity_1 as outsideRingOpacity }; let insideRingColor_1: string; export { insideRingColor_1 as insideRingColor }; let insideRingWidth_1: number; export { insideRingWidth_1 as insideRingWidth }; let insideRingStrokeDash_1: string; export { insideRingStrokeDash_1 as insideRingStrokeDash }; let errorRingColor_1: string; export { errorRingColor_1 as errorRingColor }; let errorRingWidth_1: number; export { errorRingWidth_1 as errorRingWidth }; let dashedRingColor_1: string; export { dashedRingColor_1 as dashedRingColor }; let dashedRingOpacity_1: number; export { dashedRingOpacity_1 as dashedRingOpacity }; let dashedRingWidth_1: number; export { dashedRingWidth_1 as dashedRingWidth }; let dashedRingLineThick_1: number; export { dashedRingLineThick_1 as dashedRingLineThick }; let dashedRingLineSpacing_1: number; export { dashedRingLineSpacing_1 as dashedRingLineSpacing }; let dashedInsideRingColor_1: string; export { dashedInsideRingColor_1 as dashedInsideRingColor }; let dashedInsideRingWidth_1: number; export { dashedInsideRingWidth_1 as dashedInsideRingWidth }; let showOutsideRing_1: boolean; export { showOutsideRing_1 as showOutsideRing }; let showDashedRing_1: boolean; export { showDashedRing_1 as showDashedRing }; let showInsideRing_1: boolean; export { showInsideRing_1 as showInsideRing }; } } import React from 'react'; import PropTypes from 'prop-types';