import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import Constructable from '../Constructable'; import { IHTMLDocument, IDocument } from '../interfaces/official'; import { IDocumentProperties } from './Document'; export declare const getState: (instance: IHTMLDocument) => IHTMLDocumentProperties, setState: (instance: IHTMLDocument, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export declare function HTMLDocumentGenerator(Document: Constructable): { new (): { readonly URL: Promise; readonly anchors: import("../interfaces/super").ISuperHTMLCollection; readonly body: import("../interfaces/super").ISuperHTMLElement; readonly characterSet: Promise; readonly compatMode: Promise; readonly contentType: Promise; readonly cookie: Promise; readonly designMode: Promise; readonly dir: Promise; readonly doctype: import("../interfaces/official").IDocumentType; readonly documentElement: import("../interfaces/super").ISuperElement; readonly documentURI: Promise; readonly domain: Promise; readonly embeds: import("../interfaces/super").ISuperHTMLCollection; readonly featurePolicy: import("../interfaces/official").IFeaturePolicy; readonly forms: import("../interfaces/super").ISuperHTMLCollection; readonly fullscreenEnabled: Promise; readonly head: import("../interfaces/official").IHTMLHeadElement; readonly hidden: Promise; readonly images: import("../interfaces/super").ISuperHTMLCollection; readonly implementation: import("../interfaces/official").IDOMImplementation; readonly lastModified: Promise; readonly links: import("../interfaces/super").ISuperHTMLCollection; readonly location: import("../interfaces/official").ILocation; readonly plugins: import("../interfaces/super").ISuperHTMLCollection; readonly readyState: Promise; readonly referrer: Promise; readonly scripts: import("../interfaces/super").ISuperHTMLCollection; readonly scrollingElement: import("../interfaces/super").ISuperElement; readonly title: Promise; readonly visibilityState: Promise; exitFullscreen(): Promise; exitPointerLock(): Promise; getElementsByClassName(classNames: string): import("../interfaces/super").ISuperHTMLCollection; getElementsByName(elementName: string): import("../interfaces/super").ISuperNodeList; getElementsByTagName(qualifiedName: string): import("../interfaces/super").ISuperHTMLCollection; getElementsByTagNameNS(namespace: string | null, localName: string): import("../interfaces/super").ISuperHTMLCollection; hasFocus(): Promise; readonly ATTRIBUTE_NODE: number; readonly CDATA_SECTION_NODE: number; readonly COMMENT_NODE: number; readonly DOCUMENT_FRAGMENT_NODE: number; readonly DOCUMENT_NODE: number; readonly DOCUMENT_POSITION_CONTAINED_BY: number; readonly DOCUMENT_POSITION_CONTAINS: number; readonly DOCUMENT_POSITION_DISCONNECTED: number; readonly DOCUMENT_POSITION_FOLLOWING: number; readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number; readonly DOCUMENT_POSITION_PRECEDING: number; readonly DOCUMENT_TYPE_NODE: number; readonly ELEMENT_NODE: number; readonly ENTITY_NODE: number; readonly ENTITY_REFERENCE_NODE: number; readonly NOTATION_NODE: number; readonly PROCESSING_INSTRUCTION_NODE: number; readonly TEXT_NODE: number; readonly baseURI: Promise; readonly childNodes: import("../interfaces/super").ISuperNodeList; readonly firstChild: import("../interfaces/super").ISuperNode; readonly isConnected: Promise; readonly lastChild: import("../interfaces/super").ISuperNode; readonly nextSibling: import("../interfaces/super").ISuperNode; readonly nodeName: Promise; readonly nodeType: Promise; readonly nodeValue: Promise; readonly ownerDocument: import("../interfaces/super").ISuperDocument; readonly parentElement: import("../interfaces/super").ISuperElement; readonly parentNode: import("../interfaces/super").ISuperNode; readonly previousSibling: import("../interfaces/super").ISuperNode; readonly textContent: Promise; compareDocumentPosition(other: import("../interfaces/isolate").INodeIsolate): Promise; contains(other: import("../interfaces/isolate").INodeIsolate | null): Promise; getRootNode(options?: import("../interfaces/official").IGetRootNodeOptions | undefined): import("../interfaces/super").ISuperNode; hasChildNodes(): Promise; isDefaultNamespace(namespace: string | null): Promise; isEqualNode(otherNode: import("../interfaces/isolate").INodeIsolate | null): Promise; isSameNode(otherNode: import("../interfaces/isolate").INodeIsolate | null): Promise; lookupNamespaceURI(prefix: string | null): Promise; lookupPrefix(namespace: string | null): Promise; normalize(): Promise; readonly activeElement: import("../interfaces/super").ISuperElement; readonly fullscreenElement: import("../interfaces/super").ISuperElement; readonly pointerLockElement: import("../interfaces/super").ISuperElement; caretPositionFromPoint(x: number, y: number): import("../interfaces/official").ICaretPosition; elementFromPoint(x: number, y: number): import("../interfaces/super").ISuperElement; getSelection(): import("../interfaces/official").ISelection; getElementById(elementId: string): import("../interfaces/super").ISuperElement; readonly childElementCount: Promise; readonly children: import("../interfaces/super").ISuperHTMLCollection; readonly firstElementChild: import("../interfaces/super").ISuperElement; readonly lastElementChild: import("../interfaces/super").ISuperElement; querySelector(selectors: string): import("../interfaces/super").ISuperElement; querySelectorAll(selectors: string): import("../interfaces/super").ISuperNodeList; createExpression(expression: string, resolver?: import("../interfaces/official").IXPathNSResolver | null | undefined): import("../interfaces/official").IXPathExpression; evaluate(expression: string, contextNode: import("../interfaces/isolate").INodeIsolate, resolver?: import("../interfaces/official").IXPathNSResolver | null | undefined, type?: number | undefined, result?: import("../interfaces/official").IXPathResult | null | undefined): import("../interfaces/official").IXPathResult; }; }; export interface IHTMLDocumentProperties extends IDocumentProperties { awaitedPath: AwaitedPath; awaitedOptions: any; } export declare const HTMLDocumentPropertyKeys: string[]; export declare const HTMLDocumentConstantKeys: string[];