/** * Topic command — create / list / view / add-trail on web-ade topics. * * A **topic** is a curated collection of trails on a shared subject. The * topic record itself is `{ title, description, trailIds, owner }` — trails * are referenced by id and continue to enforce their own repo-access checks * on read. See docs/topics.md in web-ade for the full design. * * Resolves a GitHub token locally (gh CLI → git credential helper) and calls * the web-ade topic API with `Authorization: Bearer `. The token is * never echoed to argv, env, stdout, or stderr. */ import { Command } from 'commander'; export declare function createTopicCommand(): Command; //# sourceMappingURL=topic.d.ts.map