import { GraphQLExecutor } from 'apollo-server-core';
import { GraphQLSchema } from 'graphql';
import { CompilerOptions } from 'graphql-jit';
export declare const executor: (schema: GraphQLSchema, cacheSize?: number, compilerOpts?: Partial<CompilerOptions>) => GraphQLExecutor<Record<string, any>>;
