import { GraphQLSchema } from 'graphql'; import { Transform } from '@graphql-tools/utils'; export default class RemoveObjectFieldDeprecations implements Transform { private readonly removeDirectives; private readonly removeDeprecations; constructor(reason: string | RegExp); transformSchema(originalSchema: GraphQLSchema): GraphQLSchema; }