/** * Native HTML sync — dataViews. */ import type { Node } from '../../Node'; import type { NativeSyncContext } from './types'; /** Data table with striped rows + optional search */ export declare function syncNativeTable(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void; /** Expandable tree */ export declare function syncNativeTree(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void;