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