import { Command } from "commander"; /** * `scai ops brief …` command family — Sitecore Content Operations Brief * API (`co-brief-api-.sitecorecloud.io`). * * Surface: * - `scai ops brief list` — list briefs in the tenant * - `scai ops brief get ` — read one brief in detail * - `scai ops brief create -f ` — create a brief from CreateBriefInput JSON * - `scai ops brief update ` — partial-PUT update (file or --status) * - `scai ops brief delete ` — delete a brief * - `scai ops brief types {list,get,create,update,delete}` — brief type CRUD * - `scai ops brief sync {pull,diff,push} [--kind brief|brief-type]` — recipe sync * - `scai ops brief todos [briefId]` — list to-dos * - `scai ops brief comments {list,add}` — list / post comments * * "Todo" is the Content Operations UI label for what the Brief API wire * calls `tasks`. Comment posting is wired UNVERIFIED — see `comments.ts`. */ export declare const createBriefCommand: () => Command;