import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { ComponentizedEquipment } from '../shared/componentized-equipment.model'; import { MatDialog } from '@angular/material/dialog'; export declare class EquipmentDecomponentizationActionComponent implements OnInit, OnChanges { private dialog; selectedItems: ComponentizedEquipment[]; hideButtonIfNotApplicable: boolean; refresh: EventEmitter; hint: string; shouldBeDisabled: boolean; private parentItem; constructor(dialog: MatDialog); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private handleSelectedItems; openDecomponentizationDialog(): void; }