/**
* Native HTML sync — navigation.
*/
import type { Node } from '../../Node';
import type { NativeSyncContext } from './types';
/** Tab strip with sliding underline indicator */
export declare function syncNativeTabs(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void;
/** Collapsible sections */
export declare function syncNativeAccordion(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void;
/** Segmented toolbar — icons, separators, wrap on narrow screens */
export declare function syncNativeToolbar(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void;
/** Editor-style status bar */
export declare function syncNativeStatusBar(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void;