import { XMLNode } from "./XMLNode"; export declare class XMLNodeIterator { constructor(); /** * Determines if the iteration has more elements */ hasNext(): boolean; /** * Gets the next element in the iteration */ next(): XMLNode; }