import React from 'react'; export interface SectionProps { className?: string; children?: React.ReactNode; styles?: { root: any; }; } declare const Section: React.FC; export default Section;