import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import AwaitedIterator from '../AwaitedIterator'; import NodeFactory from '../NodeFactory'; import { IHTMLCollectionBase } from '../interfaces/official'; import { ISuperElement } from '../interfaces/super'; export declare const getState: (instance: IHTMLCollectionBase) => IHTMLCollectionBaseProperties, setState: (instance: IHTMLCollectionBase, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export declare const nodeFactory: NodeFactory; export declare const awaitedIterator: AwaitedIterator; export declare function HTMLCollectionBaseGenerator(): { new (): { [index: number]: ISuperElement; readonly length: Promise; item(index: number): ISuperElement; then(onfulfilled?: ((value: IHTMLCollectionBase) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): Promise; [Symbol.iterator](): Iterator; }; }; export interface IHTMLCollectionBaseProperties { awaitedPath: AwaitedPath; awaitedOptions: any; createInstanceName: string; createIterableName: string; readonly length?: Promise; } export declare const HTMLCollectionBasePropertyKeys: string[]; export declare const HTMLCollectionBaseConstantKeys: never[];