import { CreateAppointmentPayload, AppointmentListPayload, AppointmentListResponse, AvailableSlotsPayload, UpdateAppointmentPayload, AvailableSlot, RescheduleAppointmentPayload, CreateMeetingPayload, CreateMeetingResponse, EndMeetingPayload } from "./types"; export declare const createAppointment: (appointmentPayload: Partial) => Promise; export declare const updateAppointment: (appointmentPayload: UpdateAppointmentPayload) => Promise; export declare const rescheduleAppointment: (appointmentPayload: RescheduleAppointmentPayload) => Promise; export declare const deleteAppointment: (payload: { appointmentId: number; workspaceId: number; addressId: number; }) => Promise; export declare const fetchAppointments: (payload: AppointmentListPayload) => Promise; export declare const fetchAvailableSlots: (payload: AvailableSlotsPayload) => Promise; export declare const createMeeting: (payload: CreateMeetingPayload) => Promise; export declare const endMeeting: (payload: EndMeetingPayload) => Promise;