import type { VCustomElement, VNode, VNodes } from './vnodes'; import type { VM } from './vm'; import type { RendererAPI } from './renderer'; export declare function patchChildren(c1: VNodes, c2: VNodes, parent: ParentNode, renderer: RendererAPI): void; export declare function mount(node: VNode, parent: ParentNode, renderer: RendererAPI, anchor: Node | null): void; export declare function removeNode(node: Node, parent: ParentNode, renderer: RendererAPI): void; export declare function allocateChildren(vnode: VCustomElement, vm: VM): void; export declare function markAsDynamicChildren(children: VNodes): void; //# sourceMappingURL=rendering.d.ts.map