export interface WorktreeLease { gitRoot: string; path: string; branch: string; } export declare class WorktreeManager { #private; create(id: string, cwd: string, name: string): Promise; get(id: string): WorktreeLease | undefined; cleanup(id: string, deleteBranch?: boolean): Promise; } //# sourceMappingURL=worktree-manager.d.ts.map