import * as React from 'react'; interface SectionProps { /** * Content to display inside the section */ children?: React.ReactNode; /** * Additional CSS class name */ className?: string; /** * Additional inline styles */ style?: React.CSSProperties; } /** * Section component - Arbor Design System * * A container component that provides consistent styling for content sections. * Has 8px padding, 8px border radius, and white background. * Used to wrap SectionHeadings, SubSectionHeadings, ListRows, and other content. * * @example * ```tsx * // Basic section with heading and list rows *
* * * *
* * // Section with interactive heading *
* * * * * *
* * // Multiple sections on a page *
*
* * *
*
* * *
*
* ``` */ declare const Section: React.ForwardRefExoticComponent>; export { Section, type SectionProps };