import * as PropTypes from 'prop-types'; import * as React from 'react'; export interface LocaleProviderProps { locale: { Pagination?: object; DatePicker?: object; DatePickerView?: object; InputItem?: object; }; } export default class LocaleProvider extends React.Component { static propTypes: { locale: PropTypes.Requireable; }; static childContextTypes: { antLocale: PropTypes.Requireable; }; getChildContext(): { antLocale: { exist: boolean; Pagination?: object | undefined; DatePicker?: object | undefined; DatePickerView?: object | undefined; InputItem?: object | undefined; }; }; render(): string | number | boolean | {} | React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | React.ReactPortal | null | undefined; }