import type {ITypography} from '../../atoms'; import type {ColorsNameType} from '../../../../types/entities/colors-name'; export type ProgressBarColorsType = ColorsNameType; export type ProgressBarSizesType = 'sm' | 'lg'; export interface IProgressBar { value: number; color?: ProgressBarColorsType; size?: ProgressBarSizesType; showValue?: boolean; isRtl?: boolean; containerClassName?: string; valueColor?: ITypography['color']; } export interface IProgressBarProgress { scheme?: ProgressBarColorsType; size?: ProgressBarSizesType; isRtl?: boolean; }