import * as React from 'react'; import { LocaleReceiverProps } from './iLocale'; export default class LocaleReceiver extends React.Component { static defaultProps: { componentName: string; }; static contextType: React.Context | undefined>; getLocale(): any; getLocaleCode(): any; render(): any; }