import { GraphQLUnionType, GraphQLObjectType } from 'graphql';
import { Change } from './change';
export declare function unionMemberRemoved(union: GraphQLUnionType, type: GraphQLObjectType): Change;
export declare function unionMemberAdded(union: GraphQLUnionType, type: GraphQLObjectType): Change;
