import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import AwaitedIterator from '../AwaitedIterator'; import NodeFactory from '../NodeFactory'; import { INodeList } from '../interfaces/official'; import { ISuperNode } from '../interfaces/super'; export declare const getState: (instance: INodeList) => INodeListProperties, setState: (instance: INodeList, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export declare const nodeFactory: NodeFactory; export declare const awaitedIterator: AwaitedIterator; export declare function NodeListGenerator(): { new (): { [index: number]: ISuperNode; readonly length: Promise; item(index: number): ISuperNode; then(onfulfilled?: ((value: INodeList) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): Promise; forEach(callbackfn: (value: ISuperNode, key: number, parent: INodeList) => void, thisArg?: any): Promise; entries(): Promise>; keys(): Promise>; values(): Promise>; [Symbol.iterator](): Iterator; }; }; export interface INodeListProperties { awaitedPath: AwaitedPath; awaitedOptions: any; createInstanceName: string; createIterableName: string; readonly length?: Promise; } export declare const NodeListPropertyKeys: string[]; export declare const NodeListConstantKeys: never[];