import { type IBaseObject, type IEntityPoolRouter } from "../../../entities";
import { type IDataHandler } from "../../../net/common/dataHandler/IDataHandler";
export declare class RageDataHandler implements IDataHandler {
    private readonly _entityPoolRouter;
    constructor(entityPoolRouter: IEntityPoolRouter);
    addDataHandler(key: string, callback: (object: IBaseObject, value: unknown, oldValue?: unknown) => void): void;
}
