import React from 'react'; import { DatetimepickerProps } from 'react-datetime'; import { InputProps } from '../Input'; declare type BaseProps = Omit; export interface DateTimeProps extends BaseProps { onChange?: (value?: string) => void; inputProps?: InputProps; loading?: boolean; hide?: boolean; helperText?: string; error?: string; label?: string; placeholder?: string; native?: boolean; } declare const _default: React.NamedExoticComponent; export default _default;