/** * The `ds` actions that exist only in the web UI, registered so the CLI names them. * * Project #272 Phase 0: extracted from `commands/ds.ts` (which crossed 800 * lines) into the existing `commands/ds/` subfolder, joining `refresh-history.ts`. * Mechanical split - no behavior change. `registerDSCommands` stays whole in * `ds.ts` so no Commander metadata moves and the generated command table in * SKILL.md cannot drift. */ import { Command } from "commander"; export declare const UI_ONLY_DS_ACTIONS: { name: string; summary: string; }[]; export declare function registerUiOnlyDSActions(ds: Command): void;