import { DocumentNode, GraphQLSchema } from 'graphql'; import { GraphQLESTreeNode } from './types.js'; import 'eslint'; import 'estree'; declare function convertToESTree(node: T, schema?: GraphQLSchema | null): GraphQLESTreeNode; export { convertToESTree };