///
import * as React from 'react';
import * as PropTypes from 'prop-types';
export declare type ProvideContext = {
[k: string]: any;
};
export declare type ProvideContextTypes = PropTypes.ValidationMap;
export default function mkContextWrapper(ctx: ProvideContext, ctxTypes: ProvideContextTypes): React.ComponentType<{
children: () => JSX.Element;
}>;