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