import { OnInit } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { Banche, BancheService } from 'my-lib-sanfelici'; 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; }