import { type GoogleConfig } from "../lib/google-client.js"; export interface BusySlot { start: string; end: string; } /** Free/busy for one or more calendars. Defaults to the account's own primary * calendar when none is named. Returns busy blocks only — free time is the * complement, which the caller computes. */ export declare function runCalendarFreebusy(config: GoogleConfig, args: { start: string; end: string; calendars?: string[]; }): Promise>; //# sourceMappingURL=calendar-freebusy.d.ts.map