import React from 'react';
import type { Schema } from 'jamis-core';
import type { HBoxColumn, HBoxProps } from './types';
export default class HBox extends React.Component<HBoxProps, object> {
    static propsList: Array<string>;
    static defaultProps: Partial<HBoxProps>;
    renderChild(region: string, node: Schema, props?: any): JSX.Element;
    renderColumn(column: HBoxColumn, key: number, length: number): JSX.Element | null;
    renderColumns(): (JSX.Element | null)[];
    render(): JSX.Element;
}
export declare class HBoxRenderer extends HBox {
}
