import { CommandSpec } from "./command"; import { Opts } from "./types"; export declare type HelpFunction = (spec: CommandSpec, args: Opts, flags: Opts, message?: string, parentSpec?: { currentPosition?: number; spec?: CommandSpec; }) => string; export declare const defaultHelp: HelpFunction;