import { GraphQLSchema, IntrospectionOptions } from 'graphql'; import { AsyncExecutor, SyncExecutor } from '@graphql-tools/delegate'; export declare function introspectSchema(executor: AsyncExecutor, context?: Record, options?: IntrospectionOptions): Promise; export declare function introspectSchemaSync(executor: SyncExecutor, context?: Record, options?: IntrospectionOptions): GraphQLSchema;