import type { Command } from "commander"; import type { CliContainer } from "../container.js"; import type { FileSystem } from "../../utils/file-system.js"; import { type SymlinkOp } from "./utils-symlink-ops.js"; export declare function registerUtilsSymlinkAgentsCommand(parent: Command, container: CliContainer): void; export declare function planAgentsSymlink(fs: FileSystem, cwd: string): Promise;