import { FC, ReactNode } from 'react';
interface SectionWrapperProps {
    children: ReactNode;
}
declare const SectionWrapper: FC<SectionWrapperProps>;
export default SectionWrapper;
