import { PluginConfig } from '../gatsby-node';
import { GatsbyReporter } from '../types/gatsby';
interface AstRewriterContext {
    reporter: GatsbyReporter;
    config: PluginConfig;
}
export declare const rewriteGraphQLSchema: (schemaSdl: string, context: AstRewriterContext) => string;
export {};
