import { CreateCustomerTreatmentPlanDto } from "../dto/create-customer-treatment-plan.dto";
import { UpdateCustomerTreatmentPlanDto } from "../dto/update-customer-treatment-plan.dto";
import { CustomerTreatmentPlanService } from "./customer-treatment-plan.service";
export declare class CustomerTreatmentPlanController {
    private readonly customerTreatmentPlanService;
    constructor(customerTreatmentPlanService: CustomerTreatmentPlanService);
    create(dto: CreateCustomerTreatmentPlanDto, files: {
        images?: Express.Multer.File[];
    }, req: any): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    findAll(limit?: number, skip?: number, search?: string, sortBy?: string, sortOrder?: string, customer_id?: number): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    findAllForAdmin(limit?: number, skip?: number, search?: string, sortBy?: string, sortOrder?: string, customer_id?: number): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    findOne(id: number): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    update(id: number, dto: UpdateCustomerTreatmentPlanDto, files?: {
        images?: Express.Multer.File[];
    }): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
    remove(id: number): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
}
