import { BoxBaseProps } from '../base/boxBase'; /** * Props for {@link Section}. * Extends {@link BoxBaseProps} except for `elementClass` and `component`. * * @category Box */ export type SectionProps = Omit; /** * Semantic layout wrapper for the native `
` element. * * Built on top of {@link BoxBase}, inheriting its layout and styling props. * Defaults to a column layout (`direction="col"`) and applies * the semantic UUI class `"uui-section"`. * * Use for grouping related content within a document or page. * * @function * @param props - All layout and style props inherited from {@link BoxBase}. * @example *
*
*
* * @category Box */ export declare const Section: import('react').ForwardRefExoticComponent>;