import type { Dispatch, SetStateAction } from 'react'; import type { PropsWithIsTabledAttribute } from '../../../../interfaces/renderProps.interface'; interface CustomDateFieldProps extends PropsWithIsTabledAttribute { linkId: string; itemType: string; itemText: string | undefined; valueDate: string; input: string; feedback: string; feedbackSeverity?: 'error' | 'warning'; isFocused: boolean; displayPrompt: string; entryFormat: string; readOnly: boolean; calcExpUpdated: boolean; isPartOfDateTime: boolean; instructionsId: string | undefined; setFocused: Dispatch>; onInputChange: (newInput: string) => void; onSelectDate: (newDateValue: string) => void; } declare function CustomDateField(props: CustomDateFieldProps): import("react/jsx-runtime").JSX.Element; export default CustomDateField;