import { Chunk } from "./Chunk"; import { Compilation } from "./Compilation"; import { Module } from "./Module"; export declare class ChunkGraph { private compilation; constructor(compilation: Compilation); getChunkModules(chunk: Chunk): Module[]; getChunkModulesIterable(chunk: Chunk): Iterable; getChunkEntryModulesIterable(chunk: Chunk): Iterable; getChunkEntryDependentChunksIterable(chunk: Chunk): Iterable; getChunkModulesIterableBySourceType(chunk: Chunk, sourceType: string): Iterable; }