import { ForwardRefExoticComponent } from 'react';
import { SectionProps, TypeMark } from './types';
type ISection = ForwardRefExoticComponent<SectionProps> & TypeMark;
declare const RefSection: ISection;
export default RefSection;
