import React from 'react'; import './index.less'; export interface SectionProps { className?: string; style?: React.CSSProperties; rightContent?: React.ReactNode; title?: React.ReactNode; children?: React.ReactNode; } export default function Section(props: SectionProps): React.JSX.Element;