import { GraphQLObjectType, GraphQLInterfaceType, GraphQLField } from 'graphql'; import { RenderContext } from '../common/RenderContext.js'; import 'prettier'; import '../../main.js'; import 'listr2'; declare const objectType: (type: GraphQLObjectType | GraphQLInterfaceType, ctx: RenderContext) => { rootTypeName: string; selectionTypeName: string; }; declare const toArgsString: (field: GraphQLField) => string; export { objectType, toArgsString };