/// /// import { LayoutProps, FlexboxProps, BorderProps, SpaceProps, MarginProps, ColorProps, BackgroundProps, PositionProps } from "styled-system"; /** * Box is the basic building block. * It abstracts a div on web and a View on mobile */ export declare type BoxProps = LayoutProps & FlexboxProps & BorderProps & SpaceProps & MarginProps & ColorProps & BackgroundProps & PositionProps; export declare const Box: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, LayoutProps>> & FlexboxProps>> & BorderProps>, keyof import("styled-system").ThemeBorders> & SpaceProps>, number | import("csstype").Globals | "auto" | `${number}%` | keyof import("styled-system").ThemeSpaces> & MarginProps & ColorProps>, number> & BackgroundProps>, import("csstype").Property.Background> & PositionProps>>, never>; /** * A Box with flex and forced horizontal orientation. */ export declare const HBox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, LayoutProps>> & FlexboxProps>> & BorderProps>, keyof import("styled-system").ThemeBorders> & SpaceProps>, number | import("csstype").Globals | "auto" | `${number}%` | keyof import("styled-system").ThemeSpaces> & MarginProps & ColorProps>, number> & BackgroundProps>, import("csstype").Property.Background> & PositionProps>>, never>; export declare const VBox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, LayoutProps>> & FlexboxProps>> & BorderProps>, keyof import("styled-system").ThemeBorders> & SpaceProps>, number | import("csstype").Globals | "auto" | `${number}%` | keyof import("styled-system").ThemeSpaces> & MarginProps & ColorProps>, number> & BackgroundProps>, import("csstype").Property.Background> & PositionProps>>, never>;