@redocly/theme
Version:
Shared UI components lib
14 lines (13 loc) • 458 B
TypeScript
import React from 'react';
import type { JSX } from 'react';
import type { MarkdownConfig } from '@redocly/config';
type DocumentationLayoutTopProps = {
config?: MarkdownConfig;
editPage?: {
to: string;
};
/** String in ISO format */
lastModified?: string | null;
};
export declare function DocumentationLayoutTop({ config, editPage, lastModified, }: React.PropsWithChildren<DocumentationLayoutTopProps>): JSX.Element;
export {};