import type { FC, ReactNode } from 'react';
interface SectionProps {
    'children': ReactNode;
    'data-footnotes'?: boolean;
    'showFootnotes'?: boolean;
}
declare const Section: FC<SectionProps>;
export default Section;
