import * as react from 'react'; import { HTMLAttributes } from 'react'; type SectionSize = 'sm' | 'md' | 'lg' | 'hero'; type SectionWidth = 'narrow' | 'default' | 'wide' | 'full'; interface SectionProps extends HTMLAttributes { as?: 'section' | 'div' | 'article' | 'header' | 'footer'; size?: SectionSize; width?: SectionWidth; } declare const Section: react.ForwardRefExoticComponent>; export { Section, type SectionProps, type SectionSize, type SectionWidth };