import { ReactNode } from 'react'; import { ConfigInterface } from '../../config'; import { OpenAPIDocumentData } from '../../types/openapi'; export interface OpenAPIDocumentProviderProps { document: OpenAPIDocumentData; config?: ConfigInterface; /** Extra classes merged onto the root surface. */ className?: string; children: ReactNode; } /** Mirrors AsyncAPIDocumentProvider, sharing the same DocumentContext shape. */ export declare function OpenAPIDocumentProvider({ document: openapi, config, className, children, }: OpenAPIDocumentProviderProps): import("react").JSX.Element; export default OpenAPIDocumentProvider;