import type { FC, HTMLAttributes } from 'react'; import type { TestableProps } from '../../utils/testId'; export interface DateRangeStartValueProps extends Omit, 'children' | 'color'>, TestableProps { } /** * Renders the start date/time input field for a date range. * Must be used within `DateRangeProvider` — `useDateRangeContext` will throw * if rendered outside. * * Arbitrary HTML attributes (`data-analytics-id`, `data-analytics-props`, * `data-testid`, `aria-*`, `id`, event handlers) land on the field's * wrapper `
`, giving consumers a per-field analytics seam. * * @example * * * * * */ export declare const DateRangeStartValue: FC;