@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
11 lines (10 loc) • 590 B
text/typescript
import { Assign } from '../../types';
import { HTMLProps, PolymorphicProps } from '../factory';
import { UsePresenceProps } from '../presence';
import { UseTimePickerProps } from './use-time-picker';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface TimePickerRootBaseProps extends UseTimePickerProps, UsePresenceProps, PolymorphicProps {
}
export interface TimePickerRootProps extends Assign<HTMLProps<'div'>, TimePickerRootBaseProps> {
}
export declare const TimePickerRoot: ForwardRefExoticComponent<TimePickerRootProps & RefAttributes<HTMLDivElement>>;