import { DataSource } from 'typeorm';
import { EmrAddNewPatient } from './entities/emr_add-new-patient.entity';
import { FaceAuthService } from 'src/face-auth/face-auth.service';
export declare class EmrAddNewPatientService {
    private readonly connection;
    private readonly dynamicConnection;
    private readonly addAppointmentService;
    constructor(connection: DataSource, dynamicConnection: DataSource, addAppointmentService: FaceAuthService);
    create(Entity: EmrAddNewPatient): Promise<any>;
    findall(): Promise<any>;
    findone(id: number): Promise<any>;
    update(id: number, Entity: EmrAddNewPatient): Promise<{
        'data ': {
            status: string;
            messege: string;
            updated_values: any;
        };
    }[] | {
        status: string;
        messege: string;
        error: any;
    }[]>;
    remove(id: string): Promise<{
        status: string;
        message: string;
    }[]>;
}
