import { IHubProject } from "../core/types/IHubProject"; import { ResultToCardModelFn, EntityToCardModelFn } from "../core/types/IHubCardViewModel"; /** * Convert a project entity into a card view model that can * be consumed by the suite of hub gallery components * * @param project project entity * @param context auth & portal information * @param opts view model options */ export declare const projectToCardModel: EntityToCardModelFn; /** * Convert a project hub search result into a card view model that * can be consumed by the suite of hub gallery components * * @param searchResult hub project search result * @param opts view model options */ export declare const projectResultToCardModel: ResultToCardModelFn;