/** * Field Date Picker * * @author: Brauer Ilya * @date: 2020-11-13 */ import * as React from 'react'; import { IFieldProps } from './Field'; import { DatePickerProps } from '../..'; import { Moment } from 'moment'; declare type IFieldInputProps = IFieldProps & { name?: string; type: 'dateTime' | 'date'; disabled: boolean; readOnly: boolean; valueFormat: string; viewFormat: string; disabledDate?: (date: Moment) => boolean; onChange: (name: string, value: string) => void; value?: string; defaultValue?: string; error?: any; placeholder?: string; suffix?: any; allowClear?: boolean; i18nLocale: string; errorTimeMessage: string; errorDateMessage: string; }; export declare class FieldDatePicker extends React.PureComponent { static defaultProps: { type: string; disabled: boolean; readOnly: boolean; }; get inputChildren(): JSX.Element; get inputProps(): DatePickerProps; onChange: (date: string) => void; render(): JSX.Element; } export {};