import { type GoogleConfig } from "../lib/google-client.js"; import { type CalendarEventItem } from "./calendar-list.js"; export interface CreateArgs { summary: string; start: string; end: string; location?: string; description?: string; attendees?: string[]; allDay?: boolean; } /** Google's event start/end is `date` for all-day and `dateTime` otherwise. * Shared with calendar-update so both build the same shape. */ export declare function toTimePoint(value: string, allDay: boolean): { date: string; } | { dateTime: string; }; export declare function runCalendarCreate(config: GoogleConfig, args: CreateArgs): Promise; //# sourceMappingURL=calendar-create.d.ts.map