import { GraphQLSchema, SelectionSetNode, GraphQLOutputType, FieldNode } from 'graphql';
import { Transform, Request } from '@graphql-tools/utils';
export default class AddSelectionSetsByField implements Transform {
    private readonly transformer;
    constructor(sourceSchema: GraphQLSchema, initialType: GraphQLOutputType, selectionSetsByType: Record<string, SelectionSetNode>, selectionSetsByField: Record<string, Record<string, SelectionSetNode>>, dynamicSelectionSetsByField: Record<string, Record<string, Array<(node: FieldNode) => SelectionSetNode>>>);
    transformRequest(originalRequest: Request): Request;
}
