File: /var/www/vhost/disk-apps/pwa.sports-crowd.com/node_modules/@oclif/core/lib/help/util.d.ts
import { Config as IConfig, HelpOptions } from '../interfaces';
import { HelpBase } from '.';
import { Deprecation } from '../interfaces/parser';
interface HelpBaseDerived {
new (config: IConfig, opts?: Partial<HelpOptions>): HelpBase;
}
export declare function loadHelpClass(config: IConfig): Promise<HelpBaseDerived>;
export declare function template(context: any): (t: string) => string;
export declare function toStandardizedId(commandID: string, config: IConfig): string;
export declare function toConfiguredId(commandID: string, config: IConfig): string;
export declare function standardizeIDFromArgv(argv: string[], config: IConfig): string[];
export declare function getHelpFlagAdditions(config: IConfig): string[];
export declare function formatFlagDeprecationWarning(flag: string, opts: true | Deprecation): string;
export declare function formatCommandDeprecationWarning(command: string, opts?: Deprecation): string;
export declare function normalizeArgv(config: IConfig, argv?: string[]): string[];
export {};