import type { Argv, ArgumentsCamelCase } from "yargs"; import { CLICommand } from "../cli/CLICommand.js"; export declare class StartCommand extends CLICommand { readonly name = "start "; readonly help = "Start work on an issue"; readonly description = "Set issue to in-progress (must be on develop)"; addArguments(yargs: Argv): Argv; execute(args: ArgumentsCamelCase): Promise; }