import type { Command } from "commander"; import type { CliContainer } from "./container.js"; /** * Bare group invocations that have no read-only overview subcommand to default to * land here: render the subcommand menu plus the most common next step and exit * non-zero, instead of dumping a wall of help. */ export declare function throwSubcommandRequired(input: { container: CliContainer; command: Command; scope: string; mostCommon: string; moduleUrl: string; }): never;