import React from 'react'; import type { CatalogEntityConfig } from '@redocly/config'; import type { BffCatalogEntity, BffCatalogRelatedEntity } from '../../../core/types'; export type CatalogEntitySchemaProps = { entity: BffCatalogEntity; relatedEntity: BffCatalogRelatedEntity | null; catalogConfig: CatalogEntityConfig; RedocSchema: React.ComponentType; StoreProvider: React.ComponentType; GraphqlTypeRenderer?: React.ComponentType<{ sdl: string; typeName: string; }>; }; export declare function CatalogEntitySchema({ entity, relatedEntity, catalogConfig, RedocSchema, StoreProvider, GraphqlTypeRenderer }: CatalogEntitySchemaProps): React.JSX.Element;