import { FC } from 'react'; import { TextFieldInputProps } from '../../../TextField'; export type DateFieldInputProps = TextFieldInputProps; /** * DateFieldInput — a masked date text input used inside DateField. * * Applies a date mask based on the current format and separator, * enforces min/max date constraints, and parses the input value on each * `input` event. When a valid date is entered, it calls `changeDate` * from context. * * Integrates with DateFieldContext for format, separator, boundaries, * change handler, and shared input ref. Merges internal and external refs * and `onInput` handlers. */ export declare const DateFieldInput: FC;