import { Map } from "../map/map"; import { IDObject } from "./id-object"; /** * 可处理Map事件基类 */ export declare class HandlerObject extends IDObject { protected _map: Map; protected _enabled: boolean; constructor(map: Map); enable(): this; disable(): this; enabled(): boolean; addHooks(): void; removeHooks(): void; }