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