import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import Constructable from '../Constructable'; import NodeFactory from '../NodeFactory'; import { IDocumentFragment, INode, INonElementParentNode, IParentNode } from '../interfaces/official'; import { INodeProperties } from './Node'; import { INonElementParentNodeProperties } from '../official-mixins/NonElementParentNode'; import { IParentNodeProperties } from '../official-mixins/ParentNode'; export declare const getState: (instance: IDocumentFragment) => IDocumentFragmentProperties, setState: (instance: IDocumentFragment, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export declare const nodeFactory: NodeFactory; export declare function DocumentFragmentGenerator(Node: Constructable, NonElementParentNode: Constructable, ParentNode: Constructable): { new (): { then(onfulfilled?: ((value: IDocumentFragment) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): 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; 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; }; }; export interface IDocumentFragmentProperties extends INodeProperties, INonElementParentNodeProperties, IParentNodeProperties { awaitedPath: AwaitedPath; awaitedOptions: any; createInstanceName: string; } export declare const DocumentFragmentPropertyKeys: string[]; export declare const DocumentFragmentConstantKeys: string[];