import { Component, QWidget } from "@nodegui/nodegui"; import { RNComponent } from "../../config"; import { RNGridRow } from "../GridRow/RNGridRow"; export declare type GridColumnProps = { /** * The number of horizontal units to occupy */ width?: number; }; export declare class RNGridColumn extends Component implements RNComponent { native: any; actualWidget?: QWidget; parentRow?: RNGridRow; latestProps?: GridColumnProps; prevProps?: GridColumnProps; columnIndex?: number; width?: number; setParentRowAndUpdateProps(parentRow: RNGridRow, index: number): void; remove(): void; setProps(newProps: GridColumnProps, oldProps: GridColumnProps): void; appendInitialChild(child: QWidget): void; appendChild(child: QWidget): void; insertBefore(child: QWidget, beforeChild: QWidget): void; removeChild(child: QWidget): void; static tagName: string; }