import type { PropsWithIsTabledAttribute } from '../../../../interfaces/renderProps.interface'; interface CustomTimeFieldProps extends PropsWithIsTabledAttribute { linkId: string; itemType: string; itemText?: string; timeInput: string; periodInput: string; is24HourNotation: boolean; feedback: string; displayPrompt: string; readOnly: boolean; calcExpUpdated: boolean; isPartOfDateTime: boolean; instructionsId?: string; onTimeInputChange: (newInput: string) => void; onPeriodChange: (newPeriod: string) => void; } declare function CustomTimeField(props: CustomTimeFieldProps): import("react/jsx-runtime").JSX.Element; export default CustomTimeField;