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