import type { Dispatch, SetStateAction } from 'react'; import type { PropsWithIsTabledAttribute } from '../../../../interfaces/renderProps.interface'; interface DateTimeFieldProps extends PropsWithIsTabledAttribute { linkId: string; itemType: string; itemText: string | undefined; displayDate: string; dateInput: string; timeInput: string; periodInput: string; is24HourNotation: boolean; dateFeedback: string; dateFeedbackSeverity?: 'error' | 'warning'; timeFeedback: string; dateFocused: boolean; displayPrompt: string; entryFormat: string; readOnly: boolean; calcExpUpdated: boolean; instructionsId: string | undefined; onDateInputChange: (newDateInput: string) => void; onSelectDate: (selectedDate: string) => void; setDateFocused: Dispatch>; onTimeInputChange: (newTimeInput: string, newPeriodInput: string) => void; } declare function DateTimeField(props: DateTimeFieldProps): import("react/jsx-runtime").JSX.Element; export default DateTimeField;