/**
* Native HTML sync — overlays.
*/
import type { Node } from '../../Node';
import type { NativeSyncContext } from './types';
/** Floating toast notification */
export declare function syncNativeToast(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void;
/** Dropdown menu panel */
export declare function syncNativeMenu(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void;
/** Modal dialog with overlay */
export declare function syncNativeDialog(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void;
/** Tooltip pill */
export declare function syncNativeTooltip(node: Node, parent: HTMLElement, ctx: NativeSyncContext): void;