import { type Argv } from 'yargs'; export declare const command = "clone [folderName]"; export declare const describe = "Will clone the branch following the folder structure, and then launch VSCode in the workspace folder."; export declare const aliases: string[]; export interface ICloneOptions { branchName: string; folderName?: string; } /** * Clone a branch from DevOps * @param argv * @returns */ export declare const handler: (argv: ICloneOptions) => void; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv;