import { UseDatePickerOptions, UseDatePickerReturn } from '../types'; /** * Manages state and interactions for the DatePicker component. * * Supports both controlled and uncontrolled modes, keeps the native date input * in sync with the calendar selection, and only commits valid `YYYY-MM-DD` * values to `onChange`. */ export declare const useDatePicker: ({ value, defaultValue, onChange, id, }: UseDatePickerOptions) => UseDatePickerReturn;