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