import { XYContainer, XYContainerConfig } from './XYContainer'; import { ConfiguredRenderable } from '../dom'; import { XYDirection } from '../common'; export interface RowConfig extends XYContainerConfig { } export declare class Row extends XYContainer { protected _direction: XYDirection.X; protected _className: string; static configure(config: RowConfig): ConfiguredRenderable; }