import React from 'react'; import type { JSX } from 'react'; import type { ResolvedNavItemWithLink, MarkdownConfig } from '@redocly/config'; type DocumentationLayoutProps = { tableOfContent: React.ReactNode; feedback: React.ReactNode; config?: MarkdownConfig; editPage?: { to: string; }; /** String in ISO format */ lastModified?: string | null; nextPage?: ResolvedNavItemWithLink | null; prevPage?: ResolvedNavItemWithLink | null; className?: string; }; export declare function DocumentationLayout({ tableOfContent, feedback, config, editPage, lastModified, nextPage, prevPage, className, children }: React.PropsWithChildren): JSX.Element; export {};