/** * Minimal reactive proxy helper for engine ECS internals. * * Note: This is intentionally lightweight and only provides the `reactive` * API shape consumed by `ecs/World.ts`. */ export declare function reactive(target: T, onMutation?: (target: T, key: string | symbol, value: unknown, oldValue: unknown) => void): T; //# sourceMappingURL=ReactiveState.d.ts.map