/** * Options for one Google Calendar API call. * * @private type of callGoogleCalendarApi */ type CallGoogleCalendarApiOptions = { method: 'GET' | 'POST' | 'PATCH' | 'DELETE'; path: string; query?: Record; body?: Record; allowNotFound?: boolean; }; /** * Runs one Google Calendar API request and parses JSON response payload. * * @private function of UseCalendarCommitmentDefinition */ export declare function callGoogleCalendarApi(accessToken: string, options: CallGoogleCalendarApiOptions): Promise; export {};