import { type IBaseObject } from "../../common/baseObject/IBaseObject";
import { type BaseObjectType } from "../../../../shared";
export declare abstract class CCMPBaseObject implements IBaseObject {
    get id(): number;
    get type(): BaseObjectType;
    get isExists(): boolean;
    destroy(): void;
}
