type MayNode = Node | null | undefined | void; export declare function ifNodeContains(root: MayNode, node: MayNode): boolean; export declare function createElementFromHTML(htmlString: string): HTMLElement | null; export {};