import type { ApiItem } from './apiItem';
import type { ProtocolVariant } from './protocol';
import type { DownloadUrls } from './async-api';
export type AsyncApiDocsSharedData = {
    document: any;
    apiItems: ApiItem[];
    routingBasePath: string;
    protocol: ProtocolVariant;
    downloadUrls: DownloadUrls[];
};
