import type { Argv, ArgumentsCamelCase } from "yargs"; import { CLICommand } from "../cli/CLICommand.js"; export declare class IssueShowCommand extends CLICommand { readonly name = "show "; readonly help = "Show details for a single issue"; readonly description = "Print all fields for one issue"; addArguments(yargs: Argv): Argv; execute(args: ArgumentsCamelCase): Promise; }