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;