import { Entity } from "./Entity";
import { eventModeInterface, modelInterface } from "../model/IModel";
import { StringIdentity } from "./Identity";
export declare class EventEntity extends Entity<StringIdentity> implements eventModeInterface {
    name: string;
    relatedNodes: eventModeInterface[];
    nearNode: eventModeInterface[];
    constructor(name: any);
    hasRelatedChild(): boolean;
    addRelatedChild(model: eventModeInterface): void;
    removeRelatedChild(relatedChild: eventModeInterface): void;
    updateRelatedChild(model: modelInterface): void;
}
