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 {};
