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