import { DateFieldAria } from '@react-aria/datepicker'; import { DateFieldState } from '@react-stately/datepicker'; import { InputHTMLAttributes, RefObject } from 'react'; import { DateInputProps } from './date-input.types'; /** * Provides the behavior and accessibility implementation for a date input component. * @internal */ export declare function useDateInput(props: DateInputProps, state: DateFieldState, ref: RefObject): { fieldProps: DateFieldAria['fieldProps']; hiddenInputProps: InputHTMLAttributes; };