import { FunctionComponent } from 'react'; import { ITile } from './Catalog.models'; import './DataListItem.scss'; interface ICatalogDataListItemProps { tile: ITile; onTagClick: (_event: unknown, value: string) => void; } export declare const CatalogDataListItem: FunctionComponent; export {};