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