import React from 'react'; import Div from '../Element/Div/Div'; import { ArrayElementType } from '../../types/utils/ArrayElementType'; import { CreateProps } from '../../types/utils/CreateProps'; export declare const supportedProgressBarColors: readonly ["purple500", "green700", "orange500"]; export declare type SupportedProgressBarColors = ArrayElementType; declare type ProgressBarProps = CreateProps<{ /** Color of the progress bar */ color?: SupportedProgressBarColors; /** Current value of the progress bar, default is 0 */ current?: number; /** Minimum value of the bar, default is 0 */ min?: number; /** Maximum value of the bar, default is 0 */ max: number; /** Units of what progress bar measures */ units?: string; /** Label of the progress bar */ label?: string; /** Units of what progress bar measures */ description?: string; }, typeof Div, 'flexItem'>; declare const ProgressBar: React.FunctionComponent; export default ProgressBar;