import { AfterViewInit, ChangeDetectorRef } from '@angular/core'; export declare class MultilineTextComponent implements AfterViewInit { private cd; content: string; unfoldMsg: string; foldMsg: string; msgColor: string; private contentRegion; seeMore: boolean; hasWord: boolean; constructor(cd: ChangeDetectorRef); ngAfterViewInit(): void; /** * 判断是否展示展开提示 */ watchChange(): void; /** * 查看/收起 更多 */ readMore(event: boolean): void; }