/** * Inbox command — fetch your trail inbox state from the Principal ADE backend. * * Resolves a GitHub token locally (gh CLI → git credential helper) and calls * `GET /api/trails/inbox` with `Authorization: Bearer `. The token is * never echoed to argv, env, stdout, or stderr. The response carries a * server-derived `notification` per row ({ dot, unread, noteCount, * newNoteCount }) plus a top-level `unreadCount`, so an agent can see which * shared trails need attention and how many notes are new since last open. */ import { Command } from 'commander'; export declare function createInboxCommand(): Command; //# sourceMappingURL=inbox.d.ts.map