import type { PropsWithIsTabledAttribute } from '../../../interfaces/renderProps.interface'; import type { Dayjs } from 'dayjs'; interface TimeFieldProps extends PropsWithIsTabledAttribute { linkId: string; itemType: string; itemText: string | undefined; value: Dayjs | null; displayPrompt: string; entryFormat: string; readOnly: boolean; instructionsId: string | undefined; onTimeChange: (newValue: Dayjs | null) => unknown; } declare function TimeField(props: TimeFieldProps): import("react/jsx-runtime").JSX.Element; export default TimeField;