/** * CLI → SkillsConfig mapping, following the toolRoutingFlags / * classifierRouterFlags pattern. * * `--skills-dir ` (or NEUROLINK_SKILLS_DIR) enables skills with a * filesystem store for generate / stream / batch / loop runs. Returns null * when neither is provided so the SDK stays skills-free by default. */ import type { SkillsConfig } from "../../lib/types/index.js"; export declare function buildSkillsConfigFromCli(options: Record): SkillsConfig | null;