import { FC } from 'react'; import { TextFieldInputProps } from '../../../TextField'; export type DateRangeFieldInputProps = TextFieldInputProps; /** * DateRangeFieldInput — the text input component for DateRangeField that * supports masked range entry. * * Purpose: * Provides a controlled text input for entering a start and end date, using * masking to enforce formatting and separators. Synchronizes the input with * the shared date range state and avoids unnecessary parsing on programmatic * updates. */ export declare const DateRangeFieldInput: FC;