import { SemanticTree } from "./types"; /** * builds a SemanticTree for a given node * @param root */ export declare const buildTree: (root: HTMLElement) => SemanticTree;