import { default as React } from 'react'; export interface SectionProps { /** * Section content */ children?: React.ReactNode; /** * Additional class names */ className?: string; /** * Defines the HTML element to render (e.g., section, article, aside, etc.) */ as?: 'section' | 'article' | 'aside' | 'div'; /** * ARIA role for accessibility */ role?: string; /** * Unique identifier for the section */ id?: string; } export declare const Section: (props: SectionProps) => JSX.Element; export default Section;