import { FC, ReactNode } from 'react';
interface SectionProps {
    children: ReactNode;
}
declare const Section: FC<SectionProps>;
export default Section;
