import { ReactNode } from 'react'; import { ConfigInterface } from '../../config'; import { AsyncAPIDocumentData } from '../../types/schema'; export interface AsyncAPIDocumentProviderProps { document: AsyncAPIDocumentData; config?: ConfigInterface; /** Extra classes merged onto the root surface. */ className?: string; children: ReactNode; } export declare function AsyncAPIDocumentProvider({ document: asyncapi, config, className, children, }: AsyncAPIDocumentProviderProps): import("react").JSX.Element; export default AsyncAPIDocumentProvider;