import { GraphQLSchema } from 'graphql';
import { Transform, PruneSchemaOptions } from '@graphql-tools/utils';
export default class PruneTypes implements Transform {
    private readonly options;
    constructor(options: PruneSchemaOptions);
    transformSchema(schema: GraphQLSchema): GraphQLSchema;
}
