/// import React from 'react'; import tsPropsType from './PropsType'; export default class DatePickerView extends React.Component { static defaultProps: { mode: string; extra: string; prefixCls: string; pickerPrefixCls: string; minuteStep: number; use12Hours: boolean; }; static contextTypes: { antLocale: any; }; render(): JSX.Element; }