import type { CustomerAddressResponse, CustomerGender, CustomerResponse, } from '../../../Api/types'; export interface CustomerProfile { event: 'customer_profile'; customer: { id: number; email: string; name: string; gender: CustomerGender; birthdate: string; address: null | Array; flags: CustomerResponse['flags']; loginStatus: boolean; }; }