export interface WorktreeInfo { canonicalPath: string; worktreePaths: string[]; isGitRepo: boolean; commonDir?: string; } export declare function getGitCommonDir(projectPath: string): string | null; export declare function getCanonicalProjectPath(projectPath: string): { canonicalPath: string; commonDir?: string; isGitRepo: boolean; }; export declare function listWorktreePaths(projectPath: string): string[]; export declare function getWorktreeInfo(projectPath: string): WorktreeInfo; //# sourceMappingURL=worktree.d.ts.map