import { OnInit, TemplateRef } from '@angular/core'; export declare class AccordionCellComponent implements OnInit { template: TemplateRef; /** * Boolean to set whether the text should wrap or not * Default value: true */ textWrap: boolean; /** * Tooltip text to be displayed */ tooltipText?: string; constructor(); ngOnInit(): void; }