export type ChunkImport = {
    /**
     * Id of the imported chunk
     */
    chunk_id: number;
    kind: 'import-statement' | 'dynamic-import';
};
