import { ArenaNodeRoot, ArenaRootInterface, ChildArenaNode } from '../interfaces'; import { AbstractParentNode } from './AbstractParentNode'; export declare class RootNode extends AbstractParentNode implements ArenaNodeRoot { arena: ArenaRootInterface; readonly root: true; readonly hasParent: false; constructor(arena: ArenaRootInterface, children?: ChildArenaNode[]); clone(): RootNode; }