import { FunctionComponent, PropsWithChildren } from 'react'; import { ITile } from '../Catalog/Catalog.models'; interface IconResolverProps { className?: string; tile: ITile; } export declare const IconResolver: FunctionComponent>; export {};