import * as React from 'react'; import { SendRequestFunction } from './sendRequestFunction'; declare const Consumer: React.ComponentType>; export interface JgqlProviderProps { sendRequest: SendRequestFunction; children?: any; } declare const JgqlProvider: ({ sendRequest, children }: JgqlProviderProps) => JSX.Element; export { Consumer, JgqlProvider };