/** * @classdesc * * * * Marks group of fields as a section. Has the same props as [Box]{@link BoxProps} * * ### Usage * * ```javascript * import { Section } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see {@link https://storybook.adminjs.co/?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; export { Section }; export default Section;