import { AnyApiReferenceConfiguration } from '@scalar/api-reference-react';
import { RenderLink } from './EndpointList';
import { OperationsApiClient } from './useOperations';
export type EntityExplorerAppProps = {
    client: OperationsApiClient;
    pathname: string;
    renderLink: RenderLink;
    basePath?: string;
    showApiExplorer?: boolean;
    apiExplorerMode?: "scalar" | "operations";
    apiExplorerUrl?: string;
    apiExplorerConfiguration?: AnyApiReferenceConfiguration;
};
export declare function EntityExplorerApp({ client, pathname, renderLink, basePath, showApiExplorer, apiExplorerMode, apiExplorerUrl, apiExplorerConfiguration, }: EntityExplorerAppProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=EntityExplorerApp.d.ts.map