import type { Appointment } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetAppointmentInput = { appointmentId: string; contractId: string; }; declare const getAppointment: (http: HttpClient) => { query: (input: GetAppointmentInput) => Promise>; }; export default getAppointment;