import * as React from 'react'; import { AsyncApiProps } from '@asyncapi/react-component'; export interface AsyncApiWebComponentProps extends AsyncApiProps { cssImportPath?: string; schemaFetchOptions?: RequestInit; schemaUrl: string; } export declare class AsyncApiWebComponent extends React.Component { private lastUrlCheck; shouldComponentUpdate(nextProps: Readonly): boolean; render(): React.JSX.Element; }