import * as SS from 'styled-system'; import { BgProps, ColorProps, VisibilityProps, CursorProps, BoxSizingProps } from './styles/system'; export type BoxProps = SS.LayoutProps & SS.FlexboxProps & SS.GridProps & SS.PositionProps & SS.SpaceProps & SS.TypographyProps & BgProps & ColorProps & VisibilityProps & CursorProps & BoxSizingProps & { row?: boolean; col?: boolean; center?: boolean; }; declare const Box: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, SS.LayoutProps>> & SS.FlexboxProps>> & SS.GridProps>> & SS.PositionProps>> & SS.SpaceProps>, string | number | symbol> & SS.TypographyProps>> & BgProps & ColorProps & VisibilityProps & CursorProps & BoxSizingProps & { row?: boolean | undefined; col?: boolean | undefined; center?: boolean | undefined; }, never>; export default Box;