/** Core */ import { CoreComponent } from "cmf.core/src/core"; /** * @whatItDoes * Uses PopOver Component with dynamic widget content, and defines an icon with circular border as the content. * * @howToUse * This component is used with the inputs and outputs mentioned below. * * ### Inputs * `string` : **iconClass** - Icon Class of popover widget header (by default is _icon-core-st-sm-info_) ; * `string` : **mainTitle** - Popover widget title (by default is _INFO_) ; * `string` : **trigger** - Popover trigger mode. By default is click. * * ### Example * To use the component, assume this HTML Template as an example: * * ```HTML * * (...) * * ``` * */ export declare class PopOverInfo extends CoreComponent { /** * Icon Class of both component and popover widget header. Default is 'icon-core-st-sm-info'. */ iconClass: string; /** * Popover widget mainTitle. Default is 'INFO'. */ mainTitle: string; /** * PopOver widget trigger events. * Possible values 'click', 'hover', 'focus', 'manual'. * To pass multiple values, separate them with a space * Default is 'click'. */ trigger: string; /** * Deprecated title input */ title: string; constructor(); } export declare class PopOverInfoModule { }