import { Command } from "commander"; /** * `scai brand review ` — evaluate file content against a * Sitecore brand kit. Streams text rows as files complete, * or aggregates into JSON / SARIF for `--format` consumers. The * SARIF + `--threshold` combination is the headline CI gate. * * Cost note: every reviewed file is one paid AI inference call. The * `--limit` guardrail (default 1000) prevents accidental fan-out * against a giant repo; pass `--force` to override after seeing the * `--what-if` projection. */ export declare const createBrandReviewCommand: () => Command;