import { Country } from './country'; export declare class Bank { id: number; name: string; code: string; country: Country; active: boolean; constructor(id: number, name: string, code: string, country: Country, active: boolean); } //# sourceMappingURL=bank.d.ts.map