import type { Command, Option } from "commander"; export interface HelpGuidance { /** Copy-paste invocations rendered under `Examples:`, each prefixed with `$`. */ examples: string[]; /** Short prose rendered under `Notes:` for behaviour no single flag description owns. */ notes?: string[]; } /** Moves already-registered options of `command` out of `Options:` into named help sections. */ export declare function groupOptionsForHelp(command: Command, groups: Record): void; export declare function optionHelpGroup(option: Option): string | undefined; export declare function setHelpGuidance(command: Command, guidance: HelpGuidance): void; export declare function helpGuidance(command: Command): HelpGuidance | undefined; /** The dashboard exit keys, documented on every `--tui` flag so graceful quit is discoverable. */ export declare function dashboardTuiDescription(subject: string): string;