import * as React from "react"; import Props from "../../interfaces/Props"; import propValidation from "../../utils/propsValidation"; import Store from "../../interfaces/Store"; export default class Provider extends React.Component> { static childContextTypes: { store: typeof propValidation; }; getChildContext(): { store: Store; }; render(): JSX.Element; }