export interface ICustomerCreditLimit {
    amountUsed: number;
    currentBalance: number;
    creditLimit: number;
    customerId: string;
    type: string;
}
