import { Node } from '../core/node.js'; import { UINode, UINodeOptions, UINodeStyle } from './ui-node.js'; export declare class HorizontalLayout extends UINode { style: HorizontalLayoutStyle; constructor(_node: Node, _options?: HorizontalLayoutOptions); protected created(options: HorizontalLayoutOptions): void; paint(): void; paintLOD1(): void; offPaint(): void; reflow(): void; onPropChange(): void; } export interface HorizontalLayoutStyle extends UINodeStyle { spacing?: number; } export interface HorizontalLayoutOptions extends UINodeOptions { childs?: UINode[]; }