import type { GraphQLField, GraphQLInputField, GraphQLInputObjectType, GraphQLInterfaceType, GraphQLObjectType } from 'graphql';
export declare function getTypeField(type: GraphQLInputObjectType, name: string): GraphQLInputField;
export declare function getTypeField(type: GraphQLObjectType | GraphQLInterfaceType, name: string): GraphQLField<any, any>;
