import { ConfigGetter } from './types'; export interface Props { className?: string; style: Object; } /** * "Connects" a component with the PropProvider (context). Concept is * similar to Redux's connect higher-order function. * * @param {string} name The component's config namespace. * @returns {React.Component} The connected React component. */ declare function propConnect(name?: ConfigGetter): (WrappedComponent: any) => any; export default propConnect;