import { CreateDiagnosisSubCategoryListDto } from "./dto/create-diagnosis-sub-category-list.dto";
import { DataSource } from "typeorm";
export declare class DiagnosisSubCategoryListService {
    private readonly connection;
    constructor(connection: DataSource);
    create(createDiagnosisSubCategoryListDto: CreateDiagnosisSubCategoryListDto): Promise<{
        status: string;
        message: string;
    }>;
    findAll(category_id: any, search: any): Promise<{
        status: string;
        message: string;
        details?: undefined;
    } | {
        status: string;
        message: string;
        details: any;
    }>;
    findunits(): Promise<{
        status: string;
        message: string;
        details: any;
    }>;
    insertunits(unit_name: string): Promise<{
        status: string;
        message: string;
    }>;
}
