import { GoogleBaseService } from "./google-base-service.js";
import { calendar_v3 } from "googleapis/build/src/apis/calendar/v3.js";
export declare class CalendarService extends GoogleBaseService {
    private calendar;
    constructor();
    listEvents(calendarId?: string, maxResults?: number): Promise<calendar_v3.Schema$Event[]>;
    getEvent(eventId: string, calendarId?: string): Promise<calendar_v3.Schema$Event>;
    listCalendars(): Promise<calendar_v3.Schema$CalendarListEntry[]>;
    searchEvents(query: string, calendarId?: string, maxResults?: number): Promise<calendar_v3.Schema$Event[]>;
}
