import { type Argv } from 'yargs'; export declare const command = "create [folderName]"; export declare const describe = "The same as the clone command, but will instead create a new branch based on develop/main."; export declare const aliases: string[]; export interface ICreateOptions { branchName: string; folderName?: string; fromBranch?: string; } /** * Create a branch from DevOps * @param argv * @returns */ export declare const handler: (argv: ICreateOptions) => void; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv & import("yargs").InferredOptionTypes<{ fromBranch: { alias: string; describe: string; type: "string"; }; }>>;