import { PropConfigCollection } from '../../core/types'; import { Property } from 'csstype'; export declare const layout: PropConfigCollection; export interface LayoutProps { height?: Property.Height; width?: Property.Width; minWidth?: Property.MinWidth; minHeight?: Property.MinHeight; maxWidth?: Property.MaxWidth; maxHeight?: Property.MaxHeight; size?: Property.Width; overflow?: Property.Overflow; overflowX?: Property.OverflowX; overflowY?: Property.OverflowY; display?: Property.Display; verticalAlign?: Property.VerticalAlign; }