import { DocumentNode } from 'graphql'; import { ReactServePlugin } from './types'; export interface TestProviderOpts { schema: DocumentNode; mocks?: Record any>; strict?: boolean; } export declare function mockGraphQlPlugin(opts: TestProviderOpts): ReactServePlugin;