import { SuccessResponse } from '@sourcefuse-npm/alivio-lib'; import { Appointment, PatientOnboardingService } from '@sourcefuse-npm/patient-facade'; import { AppointmentFeedbackService, CheckInUsersService } from '../services'; export declare class Appointmentontroller { appointmentFeedbackService: AppointmentFeedbackService; usersService: CheckInUsersService; protected patientOnbService: PatientOnboardingService; constructor(appointmentFeedbackService: AppointmentFeedbackService, usersService: CheckInUsersService, patientOnbService: PatientOnboardingService); replaceById(id: number, appointment: Partial, token?: string): Promise; }