import type { CliContainer } from "./container.js"; export declare function throwCommandNotFound(input: { container: CliContainer; /** "cli" for the root program, otherwise the group name the unknown command was typed under. */ scope: string; unknownCommand: string; helpArgs: string[]; candidates?: readonly string[]; moduleUrl: string; }): never;