import Command, { BranchNamePairStructure } from '../abstracts/AbstractBranchCommand'; export default class DisplayBranchesCommand extends Command { static description: string; run(): Promise; preformBranchOperation(_branchInfo: BranchNamePairStructure): Promise; getSelectedBranch(): Promise; }