import { HTMLAttributes, ReactElement } from 'react';
type StepperOrientation = 'vertical' | 'horizontal';
export type ProgressProps = {
orientation: StepperOrientation;
min?: number;
value?: number;
max?: number;
children?: ReactElement;
} & HTMLAttributes;
declare const Progress: import("react").ForwardRefExoticComponent<{
orientation: StepperOrientation;
min?: number;
value?: number;
max?: number;
children?: ReactElement;
} & HTMLAttributes & import("react").RefAttributes>;
export default Progress;