import { ECustomerCreditLimitType } from '../enums/type.enum';
import { ICustomerCreditLimit } from '../interfaces/i-customer-credit-limit';
export declare class CustomerCreditLimitEntity implements ICustomerCreditLimit {
    amountUsed: number;
    currentBalance: number;
    creditLimit: number;
    customerId: string;
    type: ECustomerCreditLimitType;
    constructor(data?: Partial<CustomerCreditLimitEntity>);
}
