import { ICurrency } from './Currency'; export declare enum IAccountType { CURRENT = "current", SAVINGS = "savings", LOAN = "loan", CREDIT = "credit", DEPOSIT = "deposit", OTHER = "other" } export interface IAccount { iban: string | null; number: string | null; currency: ICurrency; type: IAccountType; id: string; isFavourite: boolean | null; name: string; }