1import { ReactNode } from 'react'; 2 3export interface SectionProps { 4 children: ReactNode; 5 className?: string; 6 id?: string; 7}