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