import { GraphQLSchema } from 'graphql'; import type { HivePluginOptions } from './types.js'; export interface SchemaReporter { report(args: { schema: GraphQLSchema; }): void; dispose(): Promise; } export declare function createReporting(pluginOptions: HivePluginOptions): SchemaReporter; //# sourceMappingURL=reporting.d.ts.map