import React from 'react'; import './Progress.css'; interface ProgressProps { width?: string; bgColor?: string; loaderColor?: string; styles?: {}; } declare const Progress: React.FC; export default Progress;