import { PropProviderProps } from './types'; import * as React from 'react'; export interface Props { app: string; children: any; value: PropProviderProps; } declare class PropProvider extends React.Component { static defaultProps: { app: string; value: {}; }; getChildren: () => React.ReactElement | null; enhanceContextProps: (contextProps: Object) => Object; render(): JSX.Element; } export default PropProvider;