import type { HTMLProps } from 'react';
export type TProgressBarLabelPosition = 'bottom-left' | 'bottom-right' | 'float-bottom' | 'float-top' | 'left' | 'right';
export type TProgressBarProps = {
/** Set the Index's class name */
className?: string;
/** Set the Index's indicator class name */
indicatorClassName?: string;
/** Set the Index's label class name */
labelClassName?: string;
/** Set the Index's label position */
labelPosition?: TProgressBarLabelPosition;
/** Set the Index's track class name */
trackClassName?: string;
/** Set the Index's value */
value: number;
} & Omit, 'value'>;