@redocly/theme
Version:
Shared UI components lib
19 lines (18 loc) • 727 B
TypeScript
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<DocumentationLayoutProps>): JSX.Element;
export {};