import React from 'react';
import type { SectionElement } from '../components/Section';
export interface RenderIndividualSectionOptions {
    hidePaginationButtons?: boolean;
    parentPath?: string;
}
export declare function renderIndividualSections(sections: SectionElement[], { hidePaginationButtons, parentPath }?: RenderIndividualSectionOptions): React.JSX.Element;
