import * as React from 'react'; export interface HBoxProps { children?: React.ReactNode; verticalAlignment?: Alignment; spacing?: number; dir?: 'ltr' | 'rtl'; } export declare type Alignment = 'top' | 'center' | 'bottom'; /** * HBox */ export declare const HBox: React.SFC;