import { Command } from "commander"; /** * `scai brand kits …` — both read- and write-side brand kit operations. * - `list` : org-wide kit list * - `get` : single kit by ID * - `sections` : list sections (name + ID) of a kit * - `fields` : list subsections within a section * - `create` : create a new draft kit * - `publish` : mark a kit as published (required for pipelines) * - `set-field` : direct PATCH of a field value (the fallback for * AI-generated kits whose PDF didn't survive Sitecore's parser — * see `scai://help/brand-kit-generation`) * - `delete` : remove a kit (destructive; `-f` to skip prompt) * * All read commands support `--format text|json`. Use `--format json` * for machine-readable output when piping into other tools. */ export declare const createBrandKitsCommand: () => Command;