import type { Rspack } from '@rsbuild/core'; import type { Artifact } from '@lynx-js/debug-metadata'; /** * Walk the chunks contributing to `entryNames` and collect a * {@link Artifact} per JS / CSS asset that has a sibling Source Map v3 * file in `compilation.assets`. Assets without a map (devtool disabled, * eval-only, runtime helpers, etc.) are skipped silently. */ export declare function collectArtifacts(compilation: Rspack.Compilation, chunkGroups: Rspack.ChunkGroup[]): Artifact[];