/** * Reconcile DOM children of `parent` against `newContent`. * - Element: compare parent.childNodes against [newContent] * - DocumentFragment: compare parent.childNodes against newContent.childNodes * Only mutates nodes that actually differ — identical subtrees = zero DOM ops. */ export declare function reconcileChildren(parent: Element, newContent: Element | DocumentFragment | void): void;