import { GraphQLSchema, DocumentNode } from 'graphql'; import { AnyObject } from './types/typeUtils'; import { GenePlugin, Resolvers, ResolversOrScalars } from './types'; export declare function generateSchema(options: { schema?: GraphQLSchema | DocumentNode | string; resolvers?: ResolversOrScalars; plugins?: GenePlugin[]; types: SchemaTypes; dataTypeMap?: DataTypes; }): { schema: GraphQLSchema; readonly schemaString: string; readonly typeDefs: DocumentNode; readonly resolvers: Resolvers; readonly schemaHtml: string; };