import { OnDestroy, OnInit } from '@angular/core'; import { Subscription } from 'rxjs'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; export declare class BaseDeletePagesComponent implements OnInit, OnDestroy { protected tableService: any; modal: NgbActiveModal; id: number; title: string; isLoading: boolean; subscriptions: Subscription[]; constructor(tableService: any, modal: NgbActiveModal); ngOnInit(): void; deleteMethod(): void; ngOnDestroy(): void; }