/** Angular */ import * as ng from "@angular/core"; /** Core */ import { CoreComponent } from "cmf.core/src/core"; /** * @whatItDoes * Similar to base widget but it has a subtitle below the title and the font-size is adjusted with the screen resolution * * @howToUse * This component is used with the inputs and outputs mentioned below: * * ### Inputs * * `string` : **mainTitle** - Main title; * * `string` : **subTitle** - Sub title; * * ## Example * * ```html * * ..inner content here * * ``` */ export declare class BaseWidgetSubtitle extends CoreComponent implements ng.AfterViewInit, ng.OnDestroy { private _viewContainerRef; private _zone; /** * Remove resize listener callback */ private removeResizeListenerCallback; /** * If screen size is large */ largeScreenSize: boolean; /** * Main title */ mainTitle: string; /** * Sub-title */ subTitle: string; /** * Constructor */ constructor(_viewContainerRef: ng.ViewContainerRef, _zone: ng.NgZone); /** * After view init */ ngAfterViewInit(): void; /** * On destroy */ ngOnDestroy(): void; } export declare class BaseWidgetSubtitleModule { }