import { Assign } from '../../types'; import { HTMLProps, PolymorphicProps } from '../factory'; import { UseProgressProps } from './use-progress'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface ProgressRootBaseProps extends UseProgressProps, PolymorphicProps { } export interface ProgressRootProps extends Assign, ProgressRootBaseProps> { } export declare const ProgressRoot: ForwardRefExoticComponent>;