import { AfterViewInit, ChangeDetectorRef, ElementRef } from '@angular/core'; /** * [ThreeLiner Component](https://pxblue-components.github.io/angular/?path=/info/components-three-liner--readme) * * The `` can display up to three lines of stylized text or other ng-content. * It is most commonly used within the context of a `` component where the text can grow / shrink as the App Bar is expanded and collapsed. */ export declare class ThreeLinerComponent implements AfterViewInit { private readonly _ref; /** First line content */ title: any; /** Second line content */ subtitle: any; /** Third line content */ info: any; titleEl: ElementRef; subtitleEl: ElementRef; infoEl: ElementRef; isEmpty: (el: ElementRef) => boolean; constructor(_ref: ChangeDetectorRef); ngAfterViewInit(): void; }