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