import React, { PureComponent } from 'react'; import type { Context } from 'react'; import type { ConfigProviderProps, Locale } from './PropsType'; export declare const LocaleContext: Context; export declare const ConfigContext: Context; export declare const getRunTimeLocale: () => { locale: string; okText: string; cancelText: string; closeText: string; pullText: string; dropText: string; loadingText: string; successText: string; failureText: string; completeText: string; loadBefore: string; loadStart: string; loadEnd: string; searchText: string; pickerTitle: string; weeks: string[]; months: string[]; yearText: string; year: string; month: string; day: string; hour: string; minute: string; }; export default class ConfigProvider extends PureComponent { static defaultProps: ConfigProviderProps; componentDidMount(): void; componentDidUpdate(): void; update(): void; render(): React.JSX.Element; }