/// import type { ISection } from '../../types'; type SectionPropTypes = ISection & { children?: React.ReactNode; }; declare function Section({ children, ...props }: SectionPropTypes): JSX.Element; export default Section;