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<AsyncApiWebComponentProps> {
    private lastUrlCheck;
    shouldComponentUpdate(nextProps: Readonly<AsyncApiWebComponentProps>): boolean;
    render(): React.JSX.Element;
}
