import { ElementRef, AfterContentInit, OnDestroy, EventEmitter, QueryList, ChangeDetectorRef, TemplateRef } from '@angular/core'; import { Header } from 'primeng/api'; import { BlockableUI } from 'primeng/api'; import { Subscription } from 'rxjs'; export declare class AccordionTab implements OnDestroy { changeDetector: ChangeDetectorRef; header: string; disabled: boolean; cache: boolean; selectedChange: EventEmitter; transitionOptions: string; headerFacet: QueryList
; templates: QueryList; private _selected; private _animating; selected: any; animating: boolean; contentTemplate: TemplateRef; id: string; loaded: boolean; accordion: Accordion; constructor(accordion: any, changeDetector: ChangeDetectorRef); ngAfterContentInit(): void; toggle(event: any): boolean; findTabIndex(): number; readonly hasHeaderFacet: boolean; onToggleDone(event: Event): void; onKeydown(event: KeyboardEvent): void; ngOnDestroy(): void; } export declare class Accordion implements BlockableUI, AfterContentInit, OnDestroy { el: ElementRef; changeDetector: ChangeDetectorRef; multiple: boolean; onClose: EventEmitter; onOpen: EventEmitter; style: any; styleClass: string; expandIcon: string; collapseIcon: string; activeIndexChange: EventEmitter; tabList: QueryList; tabListSubscription: Subscription; private _activeIndex; preventActiveIndexPropagation: boolean; tabs: AccordionTab[]; constructor(el: ElementRef, changeDetector: ChangeDetectorRef); ngAfterContentInit(): void; initTabs(): any; getBlockableElement(): HTMLElement; activeIndex: any; updateSelectionState(): void; updateActiveIndex(): void; ngOnDestroy(): void; } export declare class AccordionModule { }