/** * Recursively morphs/patches an existing DOM node to match a target node in-place. * * @param {Node} existingNode - The live DOM node to update. * @param {Node} targetNode - The newly parsed virtual node containing the updates. */ export function morphDOM(existingNode: Node, targetNode: Node): void; /** * Reconciles the children of a container element to match a list of target elements. * * @param {HTMLElement} parent - The live parent element. * @param {HTMLElement[]} newElements - The array of newly parsed elements. */ export function reconcileChildren(parent: HTMLElement, newElements: HTMLElement[]): void; //# sourceMappingURL=morph.d.ts.map