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