import { FC } from "react";
import { EColor } from "enum";
import "./index.scss";
interface IProps {
percent?: number | string;
height?: number | string;
className?: string;
color?: EColor;
}
declare const ProgressBar: FC<IProps>;
export default ProgressBar;