export interface BankInfo {
  name: string;
  city: string;
  swiftCode: string;
  branch?: string;
}
