/** * CLI command registry — SSOT for commands handled by the CLI engine. * * Consumed by: * - main.ts dispatch (to avoid switch/case literal drift) * - bin/__tests__/crewx-entrypoint.test.ts (SSOT assertion vs CLI_SUBCOMMANDS) */ /** Core commands handled by the main.ts switch/case or hook routing. */ export declare const KNOWN_COMMANDS: Set; /** Built-in tool commands routed via handleBuiltin(). */ export declare const BUILTIN_COMMAND_NAMES: Set; /** Commands not yet migrated from cli-bak — show a migration message. */ export declare const NOT_YET_MIGRATED: Set;