/** * Batch-apply — runs `init()` (or the v0.7 `update()` where appropriate) * across an approved list of discovered projects. Sequential, failure- * tolerant, and writes a single markdown audit trail under * `~/.config/slaminar/setup-logs/` so the user can see what happened. */ import type { BatchApplyOptions, BatchApplyResult, DiscoveredProject } from '../types/index.js'; export declare function batchApply(projects: DiscoveredProject[], options?: BatchApplyOptions): Promise;