import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit } from '@angular/core'; import { BasicUxElementComponent, BasicUxElementComponentChanges } from '../../../core/basic-ux-element.component'; import { NgInailCommonConfig } from '../../../../ng-inail-common.config'; import * as i0 from "@angular/core"; export interface TrAccordionComponentChanges extends BasicUxElementComponentChanges { } export declare class TrAccordionComponent extends BasicUxElementComponent implements OnChanges, OnInit, AfterViewInit, OnDestroy { private elRef; private cdr; private libConfig; expanded: boolean; expandedChange: EventEmitter; colspan: number; trParent: HTMLElement; isExpanded: () => boolean; footer: ElementRef; visualizzaFooter: boolean; constructor(elRef: ElementRef, cdr: ChangeDetectorRef, libConfig: NgInailCommonConfig); ngOnChanges(changes: TrAccordionComponentChanges): void; ngOnInit(): void; toggle(expanded?: boolean): void; ngOnDestroy(): void; ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }