import React from 'react';
import type { LayoutVariant } from '@redocly/theme';
import type { AsyncApiDefinition, ApiItem, ProtocolVariant, DownloadUrls } from './types';
type RedoclyAsyncAPIDocsProps = {
    pageProps: {
        apiOptions: {
            layout: LayoutVariant;
        };
    };
    document: AsyncApiDefinition;
    apiItems: ApiItem[];
    routingBasePath: string;
    protocol: ProtocolVariant;
    downloadUrls: DownloadUrls[];
};
export declare const RedoclyAsyncAPIDocs: React.MemoExoticComponent<({ pageProps, document, apiItems, routingBasePath, protocol, downloadUrls, }: RedoclyAsyncAPIDocsProps) => import("react/jsx-runtime").JSX.Element>;
export {};
