/// import * as React from 'react'; import { Component } from 'react'; import ApolloClient from 'apollo-client'; export interface ApolloProviderProps { client: ApolloClient; children: React.ReactNode; } export default class ApolloProvider extends Component> { static propTypes: { client: any; children: any; }; static childContextTypes: { client: any; }; constructor(props: ApolloProviderProps, context: any); getChildContext(): { client: ApolloClient; }; render(): JSX.Element; }