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