import { Command } from "commander"; /** * Create the `skaile config` command group. * * Manages personal settings stored in `.skaile/settings.json` (gitignored). * Subcommands: `show` (display effective config from both personal and workspace * layers, with resolved paths and masked API keys), `get ` (print a single * effective value), `set ` (write a value — only `driver`, `model`, * `provider`, and `apiKey.` are accepted; project-level config belongs * in `skaile.yaml`). Pass `--global` to `set` to write to * `~/.skaile/settings.json` instead of the project directory. * * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/config#make-config-command */ export declare function makeConfigCommand(): Command; //# sourceMappingURL=config.d.ts.map