import * as React from 'react'; import type { ProgressRoot, ProgressStatus } from "./ProgressRoot.js"; export type ProgressRootContext = { /** * Formatted value of the component. */ formattedValue: string; /** * The maximum value. */ max: number; /** * The minimum value. */ min: number; /** * Value of the component. */ value: number | null; setLabelId: React.Dispatch>; state: ProgressRoot.State; status: ProgressStatus; }; /** * @internal */ export declare const ProgressRootContext: React.Context; export declare function useProgressRootContext(): ProgressRootContext;