import { WrapLayoutBase, orientationProperty, itemWidthProperty, itemHeightProperty } from './wrap-layout-common'; import { CoreTypes } from '../../../core-types'; export * from './wrap-layout-common'; export declare class WrapLayout extends WrapLayoutBase { [orientationProperty.setNative]: (value: "horizontal" | "vertical") => void; [itemWidthProperty.setNative]: (value: CoreTypes.LengthType) => void; [itemHeightProperty.setNative]: (value: CoreTypes.LengthType) => void; nativeViewProtected: org.nativescript.widgets.WrapLayout; createNativeView(): org.nativescript.widgets.WrapLayout; }