import { Input, TimeInput } from '@judo/model-api'; export interface TimeInputComponentProps { element: TimeInput | Input; readOnly?: boolean; value?: string | Date | null; onChange?: (value: Date | null) => void; error?: string; disabled?: boolean; judoClassName?: string; } /** * Time input component using MUI X TimePicker. */ export declare function TimeInputComponent({ element, readOnly, value, onChange, error, disabled, judoClassName, }: TimeInputComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TimeInputComponent.d.ts.map