import { OnInit } from '@angular/core'; import { Router, ActivatedRoute } from '@angular/router'; import { Banche } from '../../interface/banche'; import { BancheService } from '../../service/banche.service'; export declare class BancheEditComponent implements OnInit { private router; private bancheservice; private route; banca: Banche; id: string; constructor(router: Router, bancheservice: BancheService, route: ActivatedRoute); ngOnInit(): void; submit(): void; }