import type { Component } from '../Component.js';
import { Layout, LayoutOptions } from './Layout.js';
export declare class RowLayout implements Layout {
constructor(_options?: LayoutOptions);
layout(parent: Component, children: Component[]): void;
}