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