import { GraphQLSchema, GraphQLNamedType, DirectiveNode, FieldDefinitionNode, InputValueDefinitionNode, GraphQLArgument, EnumValueDefinitionNode, GraphQLDirective, DirectiveDefinitionNode, SchemaDefinitionNode, SchemaExtensionNode, GraphQLObjectType, ObjectTypeDefinitionNode, GraphQLField, GraphQLInterfaceType, InterfaceTypeDefinitionNode, UnionTypeDefinitionNode, GraphQLUnionType, GraphQLInputObjectType, InputObjectTypeDefinitionNode, GraphQLInputField, GraphQLEnumType, GraphQLEnumValue, EnumTypeDefinitionNode, GraphQLScalarType, ScalarTypeDefinitionNode, DocumentNode } from 'graphql'; import { GetDocumentNodeFromSchemaOptions, PrintSchemaWithDirectivesOptions } from './types'; export declare function getDocumentNodeFromSchema(schema: GraphQLSchema, options?: GetDocumentNodeFromSchemaOptions): DocumentNode; export declare function printSchemaWithDirectives(schema: GraphQLSchema, options?: PrintSchemaWithDirectivesOptions): string; export declare function astFromSchema(schema: GraphQLSchema, pathToDirectivesInExtensions: Array): SchemaDefinitionNode | SchemaExtensionNode; export declare function astFromDirective(directive: GraphQLDirective, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): DirectiveDefinitionNode; export declare function getDirectiveNodes(entity: GraphQLSchema | GraphQLNamedType | GraphQLEnumValue, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): Array; export declare function getDeprecatableDirectiveNodes(entity: GraphQLArgument | GraphQLField | GraphQLInputField, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): Array; export declare function astFromArg(arg: GraphQLArgument, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): InputValueDefinitionNode; export declare function astFromObjectType(type: GraphQLObjectType, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): ObjectTypeDefinitionNode; export declare function astFromInterfaceType(type: GraphQLInterfaceType, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): InterfaceTypeDefinitionNode; export declare function astFromUnionType(type: GraphQLUnionType, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): UnionTypeDefinitionNode; export declare function astFromInputObjectType(type: GraphQLInputObjectType, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): InputObjectTypeDefinitionNode; export declare function astFromEnumType(type: GraphQLEnumType, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): EnumTypeDefinitionNode; export declare function astFromScalarType(type: GraphQLScalarType, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): ScalarTypeDefinitionNode; export declare function astFromField(field: GraphQLField, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): FieldDefinitionNode; export declare function astFromInputField(field: GraphQLInputField, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): InputValueDefinitionNode; export declare function astFromEnumValue(value: GraphQLEnumValue, schema: GraphQLSchema, pathToDirectivesInExtensions: Array): EnumValueDefinitionNode; export declare function makeDeprecatedDirective(deprecationReason: string): DirectiveNode; export declare function makeDirectiveNode(name: string, args: Record, directive?: GraphQLDirective): DirectiveNode; export declare function makeDirectiveNodes(schema: GraphQLSchema, directiveValues: Record): Array;