import { GraphQLField, GraphQLObjectType, GraphQLInterfaceType } from 'graphql';
import { Change } from './changes/change';
export declare function changesInField(type: GraphQLObjectType | GraphQLInterfaceType, oldField: GraphQLField<any, any>, newField: GraphQLField<any, any>): Change[];
