import { FormFieldProps, FormFieldComponentProps } from '../form-field' export interface DateTimeInputProps extends FormFieldProps { showCurrentDate?: boolean // should the field be initialized with the current date saveAsUtc?: boolean // should the version in the state be utc? } export interface DateTimeInputComponentProps extends DateTimeInputProps, FormFieldComponentProps { }