export interface ProgressProps extends React.ProgressHTMLAttributes { /** * This attribute describes how much work the task indicated by the `progress` element requires. * The `max` attribute, if present, must have a value greater than `0` and be a valid floating point number. * @default 1 */ max?: number; /** * This attribute specifies how much of the task that has been completed. * It must be a valid floating point number between `0` and `max`. * If there is no `value` attribute, the progress bar is indeterminate; * this indicates that an activity is ongoing with no indication of how long it is expected to take. */ value?: number; /** * The display mode of the progress bar. * - `fraction` - Display the completion status as a fraction (default) * - `percentage` - Display the completion status as a percentage * - `none` - Do not display the completion */ displayMode?: "fraction" | "percentage" | "none"; children: React.ReactNode; } /** * This component wraps a [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress) HTML element. * * The `` HTML element displays an indicator showing the completion progress of a task. * All the props are directly sent to the progress indicator element. */ export declare const Progress: React.FC;