import { SetupSymptomsSymptomsHeadService } from './setup-symptoms-symptoms_head.service';
import { SetupSymptomsSymptomsHead } from './entities/setup-symptoms-symptoms_head.entity';
export declare class SetupSymptomsSymptomsHeadController {
    private readonly setupSymptomsSymptomsHeadService;
    constructor(setupSymptomsSymptomsHeadService: SetupSymptomsSymptomsHeadService);
    create(symptoms_headEntity: SetupSymptomsSymptomsHead): Promise<{
        'data ': {
            'id  ': any;
            status: string;
            messege: string;
            inserted_data: any;
        };
    }[]>;
    findAll(): Promise<SetupSymptomsSymptomsHead[]>;
    findOne(id: string): Promise<SetupSymptomsSymptomsHead>;
    update(id: string, symptoms_headEntity: SetupSymptomsSymptomsHead): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
    setupSymptomsHead(search: string): Promise<SetupSymptomsSymptomsHead[]>;
    findAllSymptomsHead(limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-symptoms-symptoms_head.dto").SymptomsHeadDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findSymptomsHeadSearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-symptoms-symptoms_head.dto").SymptomsHeadDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
