import { OnInit } from '@angular/core'; import { Router } from '@angular/router'; import { Observable } from 'rxjs'; import { Banche } from '../../interface/banche'; import { BancheService } from '../../service/banche.service'; export declare class BancheListComponent implements OnInit { private router; private bancheservice; banche: Observable; constructor(router: Router, bancheservice: BancheService); ngOnInit(): void; delete(id: any): void; }