import { EntityState } from './state.js'; export declare function writeDeltaEntity(from: EntityState, to: EntityState, buffer: number[]): void; /** * Applies delta compression changes from a delta entity state to a baseline entity state. * @param target The baseline state to update (in-place) * @param delta The delta state containing changes and bitmask */ export declare function applyEntityDelta(target: EntityState, delta: EntityState): void; //# sourceMappingURL=delta.d.ts.map