import { DataSource } from 'typeorm';
import { SetupSymptomsSymptomsType } from './entities/setup-symptoms-symptoms_type.entity';
import { CountDto } from './dto/setup-symptoms-symptoms_type.dto';
export declare class SetupSymptomsSymptomsTypeService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    create(symptoms_typeEntity: SetupSymptomsSymptomsType): Promise<{
        'data ': {
            'id  ': any;
            status: string;
            message: string;
            inserted_data: any;
        };
    }[]>;
    findAll(): Promise<SetupSymptomsSymptomsType[]>;
    findOne(id: string): Promise<SetupSymptomsSymptomsType | null>;
    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<CountDto>;
    findSymptomsTypeSearch(search: string, limit: number, page: number): Promise<CountDto>;
}
