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