import * as React from "react"; import type { DatePickerProp } from "../../props/components/data-entry.prop.js"; export type { DatePickerProp, DatePickerProp as DatePickerProps, } from "../../props/components/data-entry.prop.js"; /** * DatePicker — ONE date control, WAI-ARIA date combobox. A real, typeable `` holds the * value (form-submittable via `name`, screen-reader friendly, e2e-testable by filling the input); * the panel is the visual affordance. * * Two axes: `picker` sets the GRANULARITY (day · week · month · quarter · year), `range` sets the * CARDINALITY (one date, `multiple` dates, or a two-endpoint `DateRange`). This replaces the four * components this package used to ship — `DateRangePicker`, `MonthPicker`, `MonthRangePicker` were * separate copies of this same machine, and every one of them had drifted: a disabled picker that * still opened, bounds that greyed a chevron and clamped nothing, an unhandled Enter key, and a * `name` that submitted `2026/03`. Written once, those are fixed on all eight combinations. */ export declare function DatePicker(props: DatePickerProp): React.JSX.Element;