import { DocumentNode } from 'graphql';
import { Plugin } from 'esbuild';
export declare function extractCacheKeyFields(graphqlString: string): {
updatedAST: DocumentNode;
cacheFields: any[];
};
declare const graphqlLoaderPlugin: () => Plugin;
export default graphqlLoaderPlugin;