/** * `skaile catalog` — Catalog source health and configuration commands. * * Phase 2 / Task 2.7 surface. Sub-commands: * * - `skaile catalog test` — probe the configured catalog source and report OK * or a clear actionable error. In `catalog.url: local` mode, lists the * registered local source instead. In air-gapped mode (`cache_ttl: 0`) the * command does NOT touch the network; pass `--force` to probe anyway. * * Read-only diagnostics — does NOT mutate config or library state. * * @docLink cli/commands/catalog#make-catalog-command */ import { Command } from "commander"; /** * Creates the `skaile catalog` command group. * * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/catalog#make-catalog-command */ export declare function makeCatalogCommand(): Command; //# sourceMappingURL=catalog-cmd.d.ts.map