interface DateTimeInputProps { value: Date; onChange: (value: Date) => void; error?: boolean; helperText?: string; label?: string; timezone?: string; } export default function DateTimeInput({ value, onChange, error, helperText, label, timezone, }: DateTimeInputProps): import("react/jsx-runtime").JSX.Element; export {};