import type { PageProps } from '@redocly/config';
import type { AsyncApiDocsSettings } from './config';
import '@asyncapi/react-component/styles/default.css';
interface AsyncApiDocsProps {
    pageProps: PageProps & {
        settings?: AsyncApiDocsSettings;
    };
}
declare function AsyncApiDocs({ pageProps }: AsyncApiDocsProps): import("react/jsx-runtime").JSX.Element;
export default AsyncApiDocs;
