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