import React from 'react';
import type { SectionElement } from '../components';
export interface RenderEntireDocumentationOptions {
    navigationId: string;
    header?: React.ReactNode;
    path?: string;
}
export declare function renderEntireDocumentation(sections: SectionElement[], { header, path }: RenderEntireDocumentationOptions): React.JSX.Element;
