import { Repository } from "typeorm";
import { BaseAbstractRepository } from "../../../common/repository/base.repository";
import { CustomerTreatmentPlan } from "../entities/customer_treatment_plan.entity";
export declare class CustomerTreatmentPlanRepository extends BaseAbstractRepository<CustomerTreatmentPlan> {
    private readonly customerTreatmentPlanRepository;
    constructor(customerTreatmentPlanRepository: Repository<CustomerTreatmentPlan>);
}
