UNPKG

448 BTypeScriptView Raw
1import * as PropTypes from 'prop-types';
2import * as React from 'react';
3import { CalendarProps } from './PropsType';
4export default class Calendar extends React.Component<CalendarProps, any> {
5 static defaultProps: {
6 prefixCls: string;
7 timePickerPrefixCls: string;
8 timePickerPickerPrefixCls: string;
9 };
10 static contextTypes: {
11 antLocale: PropTypes.Requireable<object>;
12 };
13 render(): JSX.Element;
14}