import { FunctionComponent, PropsWithChildren } from 'react'; import { ITile } from '../components/Catalog'; export declare const CatalogTilesContext: import("react").Context; /** * The goal for this provider is to receive the Tiles in a single place once, and then supply them to the Catalog instances, * since this could be an expensive operation, and we don't want to do it for every Catalog instance */ export declare const CatalogTilesProvider: FunctionComponent;