export default class CozyProvider extends React.Component { static propTypes: { store: PropTypes.Requireable any>; dispatch: PropTypes.Validator<(...args: any[]) => any>; getState: PropTypes.Validator<(...args: any[]) => any>; }>>; client: PropTypes.Validator; children: PropTypes.Validator; }; static childContextTypes: { store: PropTypes.Requireable; client: PropTypes.Validator; }; static contextTypes: { store: PropTypes.Requireable; }; constructor(props: any, context: any); getChildContext(): { store: any; client: any; }; } import React from "react"; import PropTypes from "prop-types";