/** * Branch Lifecycle Management * Provides tools for branch cleanup, stash management, and lifecycle tracking */ interface BranchResult { success: boolean; message: string; data?: any; } export declare function branchListMerged(): BranchResult; export declare function branchCleanup(dryRun?: boolean): BranchResult; export declare function branchListStale(days?: number): BranchResult; export declare function branchStashSwitch(targetBranch: string): BranchResult; export declare function branchStashPop(): BranchResult; export declare function branchPrune(): BranchResult; export {}; //# sourceMappingURL=branch.d.ts.map