import { DataSource } from 'typeorm';
import { CheckForDuplicateAppointment } from './entities/check-for-duplicate-appointment.entity';
export declare class CheckForDuplicateAppointmentService {
    private readonly connection;
    constructor(connection: DataSource);
    create(AppointmentEntity: CheckForDuplicateAppointment): Promise<any>;
}
