import type { Argv, ArgumentsCamelCase } from "yargs"; import { CLICommand } from "../cli/CLICommand.js"; export declare class DoneCommand extends CLICommand { readonly name = "done "; readonly help = "Mark an issue as done"; readonly description = "Set issue to done (must be on issue branch)"; addArguments(yargs: Argv): Argv; execute(args: ArgumentsCamelCase): Promise; }