import { CalendarEvent } from "./types";
export declare const _fetchCalendarEvents: (basePath: string, token: string) => Promise<CalendarEvent[]>;
export declare const _blockEvent: (basePath: string, token: string, event: string, startDate: string, endDate: string) => Promise<Response>;
export declare const _unblockEvent: (basePath: string, token: string, availabilityId: string) => Promise<Response>;
