/** * Tree item states. */ export declare const DTreeItemState: { /** * A node has children. */ HAS_CHILDREN: string; /** * A node is opened. */ OPENED: string; };