import { FetchWorkspaceAddressDoctorResponse, AppointmentConfig } from "./types"; export declare const createAppointmentConfig: (payload: AppointmentConfig) => Promise; export declare const updateAppointmentConfig: ({ id, payload, }: { id: string; payload: Omit; }) => Promise; export declare const deleteAppointmentConfig: ({ id, }: { id: number; workspaceId?: number; addressId?: number; userId?: number; }) => Promise; export declare const fetchWorkspaceAddressesDoctor: (workspaceId: string) => Promise;