/**
* @classdesc
*
*
*
* Marks group of fields as a section. Has the same props as [Box]{@link BoxProps}
*
* ### Usage
*
* ```javascript
* import { Section } from '@admin-bro/design-system'
* ```
*
* @component
* @subcategory Atoms
* @see {@link https://storybook.adminbro.com/?path=/story/designsystem-atoms-section--default Storybook}
* @hideconstructor
* @example
* return (
*
* Some text within a section
*
* Section can be nested
*
*
* )
* @section design-system
*/
declare const Section: import("styled-components").StyledComponent<"section", import("styled-components").DefaultTheme, import("./box/box").BoxProps, never>;
export { Section };
export default Section;