import { LayoutTree } from '@wolf-tui/core'; import { WolfieElement } from './wolfie-element.js'; /** * Verification pass: walk the wrapper tree and confirm every WolfieElement * has a Taffy layout node. With eager Taffy node creation in WolfieElement's * constructor and cloneNode, this should always hold — log warnings if not. * * CRITICAL: early-return when nodeName === 'wolfie-text'. * Svelte's {#if} blocks insert anchor comment nodes INSIDE wolfie-text elements. * Recursing into their children would corrupt Taffy layout — text nodes are * leaves measured by setTextDimensions, not flex containers. */ export declare function initLayoutTreeRecursively(element: WolfieElement, _layoutTree: LayoutTree): void; //# sourceMappingURL=init-layout-tree.d.ts.map