export interface InterfaceProgressProps { /** * Value of Progress. * @default 0 */ value?: number; /** * Min progress value * @default 0 */ min?: number; /** * Max progress value * @default 100 */ max?: number; /** * Orientation of the progress bar. * @default 'horizontal' */ orientation?: 'horizontal' | 'vertical'; children?: any; } export type IProgressComponentType = React.ForwardRefExoticComponent< React.PropsWithoutRef & React.RefAttributes & InterfaceProgressProps > & { FilledTrack: React.ForwardRefExoticComponent< React.PropsWithoutRef & React.RefAttributes >; }; export type IProgressProps = InterfaceProgressProps;