import { SelectedCommand } from "../types/analysis.js"; import { Command, CommandTree } from "../types/commands.js"; export declare function listRelevantCommands(argw: string[], commands: CommandTree): import("./list-all-commands.js").Cmd[]; export declare function selectCommand(argw: string[], commands: CommandTree): SelectedCommand | undefined; export declare function getBooleanParams(command: Command): string[];