@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
10 lines (9 loc) • 507 B
TypeScript
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<HTMLProps<'div'>, ProgressRootBaseProps> {
}
export declare const ProgressRoot: ForwardRefExoticComponent<ProgressRootProps & RefAttributes<HTMLDivElement>>;