import type { GraphQLSchema } from 'graphql';
import type { MeshTransform, MeshTransformOptions, YamlConfig } from '@graphql-mesh/types';
export default class PruneTransform implements MeshTransform {
    private options;
    noWrap: boolean;
    constructor(options: MeshTransformOptions<YamlConfig.PruneTransformConfig>);
    transformSchema(schema: GraphQLSchema): GraphQLSchema;
}
