import type { GraphExplorer } from '../graph-explorer/explorer.ts'; import type { Issues } from '../types/issues.ts'; import type { ModuleGraph } from '../types/module-graph.ts'; import type { MainOptions } from '../util/create-options.ts'; import type { WorkspaceFilePathFilter } from '../util/workspace-file-filter.ts'; interface TraceReporterOptions { graph: ModuleGraph; explorer: GraphExplorer; options: MainOptions; workspaceFilePathFilter: WorkspaceFilePathFilter; issues: Issues; } export default _default; declare function _default({ graph, explorer, options, workspaceFilePathFilter, issues }: TraceReporterOptions): void;