/** Core */ import { CoreComponent } from "cmf.core/src/core"; import Cmf from "cmf.lbos"; /** * @whatItDoes * * Entity PopOver Info Component. * Uses a PopOverInfo component to display entity fields values inside a widget. * * @howToUse * * This component is used with the inputs and outputs mentioned below. * * ### Inputs * `Cmf.Foundation.BusinessObjects.Entity` : **instance** - Entity instance * * ### Example * * ```HTML * * * ``` * * @description * * ## EntityPopOverInfo Component * * ### Dependencies * * #### Components * PopOverInfoModule : `cmf.core.controls` * */ export declare class EntityPopOverInfo extends CoreComponent { /** * Entity instance */ instance: Cmf.Foundation.BusinessObjects.Entity; constructor(); } export declare class EntityPopOverInfoModule { }