import { GraphQLSchema } from 'graphql'; import { Request, Transform } from '../Interfaces'; export { Transform }; export declare function applySchemaTransforms(originalSchema: GraphQLSchema, transforms: Array): GraphQLSchema; export declare function applyRequestTransforms(originalRequest: Request, transforms: Array): Request; export declare function applyResultTransforms(originalResult: any, transforms: Array): any; export declare function composeTransforms(...transforms: Array): Transform;