import React from 'react'; interface IContainerProps { children: React.ReactNode; title: string; extra?: React.ReactNode; } declare const Section: React.FunctionComponent; export default Section;