import React from 'react'; export interface SectionProps extends React.HTMLProps { align?: 'start' | 'end'; className?: string; tag?: string; } declare const Section: (props: SectionProps) => React.ReactElement; export default Section;