export declare const CREATE_HELP = "usage: gws-axi calendar create --summary --start [flags]\nflags[13]:\n --summary REQUIRED \u2014 event title\n --start REQUIRED \u2014 event start (ISO datetime or YYYY-MM-DD for all-day)\n --end End time (default: start + 1h for timed, start + 1d for all-day)\n --duration Alternative to --end, e.g. \"1h\", \"30m\", \"90m\", \"1h30m\"\n --all-day Treat --start as a date (not datetime); all-day event\n --description Multi-line ok; pass via shell heredoc or quoted string\n --location Freeform location string\n --attendees Comma-separated emails (no spaces). Invites sent per --send-updates\n --timezone IANA TZ (e.g. America/New_York) for timed events (default: calendar's tz)\n --recurrence RFC 5545 RRULE (e.g. \"RRULE:FREQ=WEEKLY;BYDAY=MO,WE,FR\")\n --send-updates none | all | externalOnly (default: none \u2014 agent-safe)\n --calendar Calendar to write to (default: primary)\n --account REQUIRED when 2+ accounts are authenticated\nexamples:\n gws-axi calendar create --summary \"Team sync\" --start 2026-04-22T14:00 --duration 30m\n gws-axi calendar create --summary \"Holiday\" --start 2026-05-26 --all-day\n gws-axi calendar create --summary \"1:1\" --start 2026-04-22T10:00 --end 2026-04-22T10:30 --attendees alice@x.com,bob@x.com --send-updates all\nnotes:\n --send-updates defaults to \"none\" so agent-created events don't spam\n invited guests with notifications unless explicitly requested. Pass\n --send-updates all for production-style invite behavior.\noutput:\n Returns the newly-created event's key fields (id, summary, start, end,\n organizer, attendees count, htmlLink) plus an `action: created` line.\n"; export declare function calendarCreateCommand(account: string, args: string[]): Promise;