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