import { ResponsiveCSSProps } from '../../util/css-props'; /** * `Box` is a generic layout component. It is essentially a `
` that accepts * responsive style props, and is intended for broad use in building layouts. * * By default, `Box` renders a `
`. You can use the `as` prop to change * the underlying HTML element to improve semantics and accessibility. */ export declare const Box: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, ResponsiveCSSProps, never>;