import { ReactElement } from 'react'; import './ProgressBar.scss'; interface ProgressBarProps { value: number; width?: string; color?: string; backgroundColor?: string; } export declare function ProgressBar({ value, width, color, backgroundColor, }: ProgressBarProps): ReactElement; export {};