export declare class GitBranch { isCurrent: boolean; name: string; commitHash: string; label: string; isLocal: boolean; } export declare class GitBranchSummary { currentBranch: string; allBranches: string[]; branches: Map; detached: boolean; }