export type BranchAction = 'list' | 'create' | 'switch' | 'merge' | 'delete' | 'back'; export interface BranchResult { action: BranchAction; branch?: string; success: boolean; } export declare function showBranchMenu(): Promise; //# sourceMappingURL=branch-menu.d.ts.map