import type { EntityId } from "./Entity.js"; export interface EntityManagerSnapshot { nextIndex: number; freeList: EntityId[]; activeEntities: EntityId[]; } export interface ComponentStorageSnapshot { entities: EntityId[]; data: unknown[]; } export interface WorldSnapshot { entities: EntityManagerSnapshot; components: Record; } //# sourceMappingURL=Serialization.d.ts.map