import { PropsWithChildren } from 'react'; interface SectionProps { title: string; } declare const Section: ({ title, children }: PropsWithChildren) => JSX.Element; export default Section;