import React from 'react'; import { GraphQLClient as GQLClient } from 'graphql-request'; interface GraphQLClient { graphQLClient: GQLClient; } /** * The GraphQLClientContextProvider's job is to provide an GraphQL client that * takes care of things like managing the HTTP Authorization header and * other default behavior. */ export declare const GraphQLClientContextProvider: ({ injectedGraphQLInstance, baseURL, children, }: { injectedGraphQLInstance?: GQLClient | undefined; baseURL?: string | undefined; children?: React.ReactNode; }) => React.JSX.Element; export declare const useGraphQLClient: () => GraphQLClient; export {};