import { OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { Banche } from 'my-lib-sanfelici/my-lib-sanfelici'; import { BancheService } from 'my-lib-sanfelici'; export declare class BancheDetailsComponent implements OnInit { private route; private bancheservice; banca: Banche; id: string; constructor(route: ActivatedRoute, bancheservice: BancheService); ngOnInit(): void; }