export declare class BlackboardRef { private readonly _uuid; private readonly _name; private readonly _children; protected readonly _marker: T; constructor(name: string, parent?: BlackboardRef); createChild(name: string): BlackboardRef; get children(): ReadonlyArray>; get descendants(): BlackboardRef[]; get uuid(): string; get name(): string; }