import { QWidget, QBoxLayoutSignals, QBoxLayout, Direction } from "@nodegui/nodegui"; import { ViewProps } from "../View/RNView"; import { RNComponent } from "../config"; export interface BoxViewProps extends ViewProps { direction?: Direction; } /** * @ignore */ export declare class RNBoxView extends QWidget implements RNComponent { native: any; initialProps?: BoxViewProps; _children: Array>; layout(): QBoxLayout | null; setLayout(layout: QBoxLayout): void; setProps(newProps: BoxViewProps, oldProps: BoxViewProps): void; appendInitialChild(child: QWidget): void; appendChild(child: QWidget): void; insertBefore(child: QWidget, beforeChild: QWidget): void; removeChild(child: QWidget): void; static tagName: string; }