import { FC } from 'react'; import { TextFieldInputProps } from '../../../TextField'; export type DateTimeFieldInputProps = TextFieldInputProps; /** * DateTimeFieldInput — a masked text input for entering date and time values. * * Purpose: * Provides controlled text-based entry for a DateTimeField using an input mask, * while keeping the parsed date and time values synchronized with shared field state. * * This component represents the input side of the DateTimeField and works in * tandem with the calendar component to maintain a consistent date–time state. */ export declare const DateTimeFieldInput: FC;