import { ContainerIterator } from "../../ContainerBase"; declare abstract class TreeIterator extends ContainerIterator { pre: () => this; next: () => this; /** * @description Get the sequential index of the iterator in the tree container.
* * Note: * * This function only takes effect when the specified tree container `enableIndex = true`. */ get index(): number; equals(obj: TreeIterator): boolean; } export default TreeIterator;