/// import { colors } from '../../utils/colors'; export declare type ProgressBarProps = { /** * Value of the progress. */ value: number; /** * Minimum value of the progress. */ min: number; /** * Maximum value of the progress bar. */ max: number; /** * @default false */ disabled?: boolean; /** * The thickness of the progress bar. */ height?: keyof typeof progressBarSize; /** * The direction of the progress bar. * @default right */ direction?: 'left' | 'right'; /** * Set this to true if you don't want to see the total shadow * @default false */ transparent?: boolean; purple?: boolean; className?: string; } & ({ /** * @deprecated Use `color` prop to use the new supported colors. */ barColor?: string; /** * @default green */ color?: undefined; } | { color?: keyof typeof colors; }); /** * Category: Graphs */ export declare const ProgressBar: (props: ProgressBarProps) => JSX.Element; export declare const progressBarSize: { xs: string; sm: string; md: string; lg: string; xl: string; }; export default ProgressBar;