import { IDictionary } from "common-types"; import { IOptionDefinition } from "../../@types/index"; /** * Gets the syntax for the help system for both "global help" * as well as on a per function basis. The syntax for a function * can be manually set by providing a `syntax` symbol on the * command. If not provided a default syntax will be used. */ export declare function getSyntax(fn?: string): Promise; /** * Gets the "description" content for the help area */ export declare function getDescription(opts: IDictionary, fn?: string): Promise; /** * * @param opts * @param fn */ export declare function getExamples(opts: IDictionary, fn?: string): Promise; export declare function getOptions(opts: IOptionDefinition, _fn?: string): Promise; //# sourceMappingURL=helpContent.d.ts.map