import { Country } from "./Country"; export declare class Bank { id: number; code: string; country: Country; name: string; status: number; }