import { DiagnosisSubCategoryListService } from "./diagnosis-sub-category-list.service";
import { CreateDiagnosisSubCategoryListDto } from "./dto/create-diagnosis-sub-category-list.dto";
export declare class DiagnosisSubCategoryListController {
    private readonly diagnosisSubCategoryListService;
    constructor(diagnosisSubCategoryListService: DiagnosisSubCategoryListService);
    create(createDiagnosisSubCategoryListDto: CreateDiagnosisSubCategoryListDto): Promise<{
        status: string;
        message: string;
    }>;
    findAll(category_id: number, search: string): Promise<{
        status: string;
        message: string;
        details?: undefined;
    } | {
        status: string;
        message: string;
        details: any;
    }>;
    getAllUnits(): Promise<{
        status: string;
        message: string;
        details: any;
    }>;
    addUnit(unit_name: string): Promise<{
        status: string;
        message: string;
    }>;
}
