import * as React from 'react'; import type { BaseUIComponentProps } from '../../utils/types.js'; import type { ProgressRoot } from '../root/ProgressRoot.js'; /** * A text label displaying the current value. * Renders a `` element. * * Documentation: [Base UI Progress](https://base-ui.com/react/components/progress) */ declare const ProgressValue: React.ForwardRefExoticComponent>; declare namespace ProgressValue { interface State extends ProgressRoot.State { } interface Props extends Omit, 'children'> { children?: null | ((formattedValue: string | null, value: number | null) => React.ReactNode); } } export { ProgressValue };