import { Command } from "commander"; /** * `scai setup login brand` — deprecated alias for * `scai setup client register-brand`. Behavior is identical; kept so * scripts written against the old command surface keep working. */ export declare const createLoginBrandCommand: () => Command; /** * `scai setup client …` — manage an environment's credentials. The * `create` / `list` / `delete` verbs operate on the automation client * (the machine credential scai mints and uses for Deploy, Authoring, * Publishing, Sites, Pages, Brief, and Campaign); `register-brand` * registers the brand / AI APIs key. Grouping both of scai's credential * kinds under one `client` noun keeps the credential surface in one * place. */ export declare const createSetupClientCommand: () => Command;