@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 473 B
text/typescript
import { InputProps } from '@zag-js/date-picker';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface DatePickerInputBaseProps extends InputProps, PolymorphicProps {
}
export interface DatePickerInputProps extends HTMLProps<'input'>, DatePickerInputBaseProps {
}
export declare const DatePickerInput: ForwardRefExoticComponent<DatePickerInputProps & RefAttributes<HTMLInputElement>>;