import type { Command } from "commander"; import type { WorktreeExecutionOptions } from "../../sdk/types.js"; export type WorktreeCliOptions = { worktree?: boolean; }; export declare function addWorktreeOptions(command: Command): Command; export declare function pickWorktreeOptions(options: Record): WorktreeExecutionOptions; export declare function isWorktreeRequested(options: Record): boolean; export declare function mapSourcePathIntoWorktree(sourceCwd: string, sourcePath: string, worktreeCwd: string): string;