import type { GraphExplorer } from '../graph-explorer/explorer.js';
import type { Export, ExportMember, ModuleGraph } from '../types/module-graph.js';
import type { MainOptions } from '../util/create-options.js';
interface TraceReporterOptions {
    graph: ModuleGraph;
    explorer: GraphExplorer;
    options: MainOptions;
    isExportReferencedInFile: (exportedItem: Export | ExportMember) => boolean;
}
declare const _default: ({ graph, explorer, options, isExportReferencedInFile }: TraceReporterOptions) => void;
export default _default;
