export declare class CoreModel { /** * Add/remove component html to/from the browser DOM. Default must be specified in the templates. */ display?: boolean; /** * Disbale or enable the component. Default must be specified in the templates. */ disable?: boolean; /** * Component template name/path. */ compTemplate?: string; /** * Tooltip on hover of the component with structure:
*
* {{'{'}}
* message: string, // Tip to be displayed
* position: string // Tooltip positon: 'top', 'right' ,'left', 'bottom'
* {{'}'}}
*
*/
tooltip?: any;
/** @hidden */
constructor(values?: Object);
}