import { CommandMeta } from "../types.mjs"; //#region src/codegen/parsers/help.d.ts interface ParseHelpOptions { /** Name to use for the root command if not detected from the help text */ name?: string; } /** * Parse --help text output into CommandMeta. * Handles common styles: GNU coreutils, Go cobra, Python argparse, Node commander/yargs, gh CLI. */ declare function parseHelpOutput(text: string, options?: ParseHelpOptions): CommandMeta; //#endregion export { parseHelpOutput }; //# sourceMappingURL=help.d.mts.map