import { GraphQLSchema } from 'graphql';
import { YamlConfig, MeshTransform, MeshTransformOptions } from '@graphql-mesh/types';
export default class SnapshotTransform implements MeshTransform {
    noWrap: boolean;
    private config;
    private baseDir;
    private importFn;
    constructor({ baseDir, config, importFn }: MeshTransformOptions<YamlConfig.SnapshotTransformConfig>);
    transformSchema(schema: GraphQLSchema): GraphQLSchema;
}
