import { GraphQLInterfaceType, GraphQLObjectType, GraphQLInputObjectType } from 'graphql'; import { RenderContext } from '../common/RenderContext'; import { FieldMap, Type } from './renderTypeMap'; export declare const objectType: (type: GraphQLInterfaceType | GraphQLInputObjectType | GraphQLObjectType, ctx: RenderContext) => Type & { fields: FieldMap; };