///
import { TBaseProps } from '../types';
import '../styles/controls/ProgressControl.scss';
declare type ProgressControlProps = TBaseProps & {
animated?: boolean;
barClassName?: string;
barText: string;
bars: ProgressControlProps[];
color?: string;
id: string;
max?: number;
multi?: boolean;
striped?: boolean;
value: number | Record;
};
export declare const ProgressControl: (props: ProgressControlProps) => JSX.Element;
export {};