import { EventEmitter, OnDestroy } from "@angular/core"; import { IdService } from "../shared/services/id.service"; export declare class ExpandableComponent implements OnDestroy { private idService; id: string; expanded: boolean; arrow: boolean; arrowPositionX: "left" | "center" | "right"; arrowPositionY: "top" | "middle" | "bottom"; duration: number; toggleShow: boolean; hostClass: string | string[]; childId: string; disabled: boolean; expandclose: EventEmitter<{}>; expandopen: EventEmitter<{}>; constructor(idService: IdService); ngOnDestroy(): void; toggle(): void; }