UNPKG

@redocly/asyncapi-docs

Version:

Async API docs for Redocly Realm

15 lines (14 loc) 520 B
import { LayoutVariant } from '@redocly/theme'; import type { PropsWithChildren } from 'react'; import type { DownloadUrls } from '../types'; import { ProtocolVariant } from '../types'; type AppProviderStore = { store: { layout: LayoutVariant; protocol: ProtocolVariant; routingBasePath: string; downloadUrls: DownloadUrls[]; }; }; export declare const AppProvider: ({ children, store }: PropsWithChildren<AppProviderStore>) => import("react/jsx-runtime").JSX.Element; export {};