import PropTypes from 'prop-types'; import React, { Component } from 'react'; import { Locale as TypeLocale } from './iLocale'; declare class Locale extends Component<{ locale: TypeLocale; }> { static defaultProps: { locale: TypeLocale; }; static childContextTypes: { beeLocale: PropTypes.Requireable; }; getChildContext(): { beeLocale: { exist: boolean; locale?: string | undefined; lang?: keyof import("./iLocale").LangMap | undefined; }; }; render(): boolean | {} | React.ReactChild | React.ReactPortal | null | undefined; } export default Locale;