import React from 'react'; import { BffCatalogEntity } from '../../../core/types'; type Entity = Pick; export type CatalogEntityCellProps = { entity: T; }; export declare function CatalogEntityCell({ entity }: CatalogEntityCellProps): React.JSX.Element; export {};