import React, { HTMLAttributes, Ref } from 'react';
export declare type flexType = number | 'none' | 'flex' | 'nogrow' | 'grow' | 'initial' | 'auto' | 'noshrink';
declare type alignH = 'none' | 'start' | 'center' | 'end' | 'space-around' | 'space-between';
declare type alignV = 'none' | 'start' | 'center' | 'end' | 'stretch';
declare type direction = 'row' | 'column' | 'row-reverse' | 'column-reverse';
declare type wrapType = 'inherit' | 'initial' | 'wrap' | 'nowrap' | 'wrap-reverse';
export interface IView extends HTMLAttributes {
htmlElement?: string;
alignH?: alignH;
alignV?: alignV;
direction?: direction;
fill?: boolean;
wrap?: wrapType;
flex?: flexType;
forwardedRef?: Ref;
}
export declare type IViewProps = Omit;
export declare type ViewRef = HTMLDivElement;
declare const _default: React.ForwardRefExoticComponent>;
export default _default;