import { type ProgramInfo } from './parsers/index';
/**
 * Tries to parse a help string into an object through a process of trial and
 * error with the available parsers.
 *
 * Generally, there's no way to know which framework was used to generate a
 * particular CLI tool without inspecting the output for particular formatting
 * patterns.
 */
export declare function helpStringToObject(helpString: string): ProgramInfo | undefined;
