import type { Chunk } from "./Chunk";
export type ChunkGraphReady = {
    action: 'ChunkGraphReady';
    chunks: Array<Chunk>;
};
