import * as React from 'react';
import { ProgressStatus, useProgressRoot } from './useProgressRoot.js';
import { BaseUIComponentProps } from '../../utils/types.js';
/**
 * Groups all parts of the progress bar and provides the task completion status to screen readers.
 * Renders a `<div>` element.
 *
 * Documentation: [Base UI Progress](https://base-ui.com/react/components/progress)
 */
declare const ProgressRoot: React.ForwardRefExoticComponent<ProgressRoot.Props & React.RefAttributes<HTMLDivElement>>;
declare namespace ProgressRoot {
    type State = {
        max: number;
        min: number;
        status: ProgressStatus;
    };
    interface Props extends useProgressRoot.Parameters, BaseUIComponentProps<'div', State> {
    }
}
export { ProgressRoot };
