import { DataSource } from 'typeorm';
import { SetupSymptomsSymptomsHead } from './entities/setup-symptoms-symptoms_head.entity';
import { CountDto } from './dto/setup-symptoms-symptoms_head.dto';
export declare class SetupSymptomsSymptomsHeadService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    create(symptoms_headEntity: SetupSymptomsSymptomsHead): Promise<{
        'data ': {
            'id  ': any;
            status: string;
            messege: string;
            inserted_data: any;
        };
    }[]>;
    findAll(): Promise<SetupSymptomsSymptomsHead[]>;
    findOne(id: string): Promise<SetupSymptomsSymptomsHead | null>;
    update(id: string, symptoms_headEntity: SetupSymptomsSymptomsHead): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    setupSymptomsHead(search: string): Promise<SetupSymptomsSymptomsHead[]>;
    findAllSymptomsHead(limit: number, page: number): Promise<CountDto>;
    findSymptomsHeadSearch(search: string, limit: number, page: number): Promise<CountDto>;
}
