export interface BoxTypes extends UnknownType { justifyContent?: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly'; alignItems?: "flex-start" | "flex-end" | "center" | "baseline" | "stretch"; alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch"; width?: string; height?: string; wrap?: "nowrap" | "wrap" | "wrap-reverse"; direction?: "row" | "row-reverse" | "column" | "column-reverse"; margin?: string; pad?: string; bgColor?: string; children?: any; } export declare type UnknownType = { [k: string]: any; }; export interface FrameTypes extends UnknownType { width?: string; height?: string; wrap?: "nowrap" | "wrap" | "wrap-reverse"; object?: 'fill' | 'contain' | 'cover' | "none" | "scale-down"; rounded?: string; children?: any; } export interface GridTypes extends BoxTypes { columns?: string; rows?: string; gap?: string; children?: any; width?: string; }