import Command, { BranchNamePairStructure } from '../abstracts/AbstractBranchCommand'; import 'reflect-metadata'; import { flags } from '@oclif/command'; export default class CreateGitFlowCommand extends Command { static description: string; static flags: { type: flags.IOptionFlag; }; run(): Promise; private getBranchNamePrefix; getSelectedBranch(): Promise; preformBranchOperation(branchInfo: BranchNamePairStructure): Promise; }