import React from "react"; import { Color } from "../../../lib/inputTypes"; export interface ProgressBarProps extends React.HTMLAttributes { value: number; label?: string; tooltip?: string; showAnimation?: boolean; color?: Color; } declare const ProgressBar: React.ForwardRefExoticComponent>; export default ProgressBar;