import { ArgvTheme } from "../themes.js"; import { CliConfig } from "../types.js"; import { Palette } from "../../../tooling/text/theming.js"; import { SelectedCommand } from "../../analysis/types/analysis.js"; import { CommandTree } from "../../analysis/types/commands.js"; import { Cmd } from "../../analysis/utils/list-all-commands.js"; export declare function printHelp({ readme, palette, commands, selectedCommand, relevantCommands, name: programName, help: programHelp, summarize, }: { commands: CommandTree; relevantCommands: Cmd[]; palette: Palette; selectedCommand: SelectedCommand | undefined; } & CliConfig): string | null;