export type RepoContext = { repoRoot: string; projectRoot: string; gitRoot: string; gitDir: string; gitCommonDir: string; branch: string; isWorktree: boolean; worktreePath?: string; }; export declare function detectRepoContext(options: { cwd: string; }): Promise;