import * as React from 'react';
import type { ProgressRoot } from './ProgressRoot.js';
import type { useProgressRoot } from './useProgressRoot.js';
export type ProgressRootContext = Omit<useProgressRoot.ReturnValue, 'getRootProps'> & {
    state: ProgressRoot.State;
};
/**
 * @ignore - internal component.
 */
export declare const ProgressRootContext: React.Context<ProgressRootContext | undefined>;
export declare function useProgressRootContext(): ProgressRootContext;
