import type { FC } from 'react'; import type { DateRangeInputProps } from './types'; /** * Date range input with start and end date fields sharing a single border. * Supports date-only and date+time granularity via `granularity`. * Built on React-Aria's date range picker for keyboard/a11y behavior. * * For custom layouts around the start/end fields, use the compound API: * `DateRangeProvider` + `DateRangeStartValue` / `DateRangeSeparator` / * `DateRangeEndValue` + `useDateRangeContext`. * * Pair with `` + `` for error messaging — this component * does not render error text itself. * * @example * * * @example * // With time — hour cycle comes from DateFormatProvider * */ export declare const DateRangeInput: FC;