@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 437 B
TypeScript
import { HTMLProps, PolymorphicProps } from '../factory';
import { UseTimerProps } from './use-timer';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface TimerRootBaseProps extends UseTimerProps, PolymorphicProps {
}
export interface TimerRootProps extends HTMLProps<'div'>, TimerRootBaseProps {
}
export declare const TimerRoot: ForwardRefExoticComponent<TimerRootProps & RefAttributes<HTMLDivElement>>;