import { SetupSymptomsSymptomsTypeService } from './setup-symptoms-symptoms_type.service';
import { SetupSymptomsSymptomsType } from './entities/setup-symptoms-symptoms_type.entity';
export declare class SetupSymptomsSymptomsTypeController {
    private readonly setupSymptomsSymptomsTypeService;
    constructor(setupSymptomsSymptomsTypeService: SetupSymptomsSymptomsTypeService);
    create(symptoms_typeEntity: SetupSymptomsSymptomsType): Promise<{
        'data ': {
            'id  ': any;
            status: string;
            message: string;
            inserted_data: any;
        };
    }[]>;
    findAll(): Promise<SetupSymptomsSymptomsType[]>;
    findOne(id: string): Promise<SetupSymptomsSymptomsType>;
    update(id: string, symptoms_typeEntity: SetupSymptomsSymptomsType): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    setupSymptomsType(search: string): Promise<SetupSymptomsSymptomsType[]>;
    findAllSymptomsType(limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-symptoms-symptoms_type.dto").SymptomsTypeDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findSymptomsTypeSearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-symptoms-symptoms_type.dto").SymptomsTypeDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
