export interface ICreditCard { type: string; id: string; attributes: { name: string; brand: string; last4: string; exp_month: number; exp_year: number; funding: string; }; }