import React from 'react';
interface SectionContentProps {
    children: React.ReactNode;
}
declare function SectionContent({ children }: SectionContentProps): React.JSX.Element;
export default SectionContent;
