import { ICard } from './card'; export interface ICustomer { cards: Array; emailAddress: string; metadata: { [key: string]: string | null; } | null; mobileNumber: string | null; name: string; }