/** * Per-lane git worktree provisioning (ADR 0014 Phase 2 / W5). */ export declare function laneShortId(laneId: string): string; export declare function laneGitBranch(laneId: string): string; export declare function defaultWorktreePath(trellisDir: string, laneId: string): string; export declare function isGitRepo(rootPath: string): boolean; export declare function resolveBaseRef(rootPath: string, baseBranch: string): string; export declare function provisionWorktree(opts: { rootPath: string; worktreePath: string; branch: string; baseRef: string; }): void; export declare function removeWorktree(opts: { rootPath: string; worktreePath: string; branch?: string; deleteBranch?: boolean; }): void; //# sourceMappingURL=lane-worktree.d.ts.map