import { type Argv } from 'yargs'; export declare const command = "branch"; export declare const describe = "Will list all branch and the corresponding directories."; export declare const aliases: string[]; export interface IBranchOptions { commit?: boolean; filter?: boolean; orphan?: boolean; } /** * Clone a branch from DevOps * @param argv * @returns */ export declare const handler: (argv: IBranchOptions) => Promise; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv & import("yargs").InferredOptionTypes<{ commit: { alias: string; describe: string; type: "boolean"; }; filter: { alias: string; describe: string; type: "boolean"; }; orphan: { alias: string; describe: string; type: "boolean"; }; }>>;