/** * `clustly agents` + `clustly unlist` โ€” command glue (GUIDELINES ยง2), owner UX 2026-08-28. * * `agents` is the ACCOUNT inventory (not workspace-scoped): every agent the signed-in * operator owns, with the derived hosting truth, the latest release (review gate stated * plainly), and every listing โ€” so "what is under review / what is just registered / what * can I delete" is answerable from the terminal. `unlist` pauses live listings * (reversible; `clustly publish` re-lists), and is the REQUIRED first step before * `clustly destroy` of a listed agent (the server fences it). */ import { type AccountAgent } from "../hosting/lifecycle"; /** One human line per agent โ€” the state words an operator acts on. */ export declare function agentLine(agent: AccountAgent): string; export declare function agentsCommand(usage: string): Promise; export declare function unlistCommand(usage: string): Promise;