import { type ProgramInfo } from './index';
/**
 * Converts am unstructured help string emitted from a CLI tool built with the
 * `Yargs` CLI library and turn it into a structured POJO describing the
 * command.
 */
export declare function helpStringToObject(helpString: string): ProgramInfo;
