import React from 'react';
import { type RendererProps, type Schema } from 'jamis-core';
import type { VBoxRow, VBoxSchema } from './types';
interface VBoxProps extends RendererProps, Omit<VBoxSchema, 'className'> {
}
export default class VBox extends React.Component<VBoxProps, object> {
    static propsList: Array<string>;
    static defaultProps: Partial<VBoxProps>;
    renderChild(region: string, node: Schema): JSX.Element;
    renderCell(row: VBoxRow, key: any): JSX.Element;
    render(): JSX.Element;
}
export declare class VBoxRenderer extends VBox {
}
export {};
