interface ICustomer { customerId: number; customerName: string; address: string; email: string; phoneNumber: string; creditLimit: number; customerType: string; activeStatus: boolean; remarks: string; } export { ICustomer };