import type { PruneSchemaOptions } from '@graphql-tools/utils'; import type { SubgraphTransform } from '../compose'; export type PruneTransformOptions = { skipPruning: PruneSchemaOptions['skipPruning'] | string[]; } & Omit; export declare function createPruneTransform(options?: PruneTransformOptions): SubgraphTransform;