import { OnDestroy } from '@angular/core'; import { IdService } from '../../shared/services/id.service'; export declare class ExpandableContainerComponent implements OnDestroy { private idService; id: string; accordion: boolean; card: boolean; header: string; showButton: boolean; buttonOpenAll: string; buttonCloseAll: string; expandables: any; constructor(idService: IdService); ngOnDestroy(): void; buttonText(): string; toggleExpanded(): void; isAllExpanded(): boolean; childExpanded(id: string, expanded: boolean): void; }