import { type Action } from "../internals/plan.js"; import type { CliFootprint } from "./cli-footprint.js"; /** * All `--migrate-cli` write actions for a repo. Acts only on `import` candidates; * everything else (personal/kept/wired/runtime + memory + tool config) is left * untouched by construction. Empty when there is nothing to migrate. */ export declare function migrateCliActions(root: string, footprint: CliFootprint, contextDir: string): Action[]; /** Paths skipped on purpose under `--migrate-cli` (memory + tool config), for the digest note. */ export declare function migrateSkips(footprint: CliFootprint): string[];