import { BffCatalogEntity, BffCatalogRelatedEntity } from '../../types'; type CatalogEntitySchemaProps = { entity: BffCatalogEntity; relatedEntity: BffCatalogRelatedEntity | null; }; export declare function useCatalogEntitySchema({ entity, relatedEntity }: CatalogEntitySchemaProps): { definition: Record; parsedSchema: any; rawSchema: any; }; export {};