import * as Interfaces from '../interfaces';
import { HelpFormatter } from './formatter';
export default class RootHelp extends HelpFormatter {
    config: Interfaces.Config;
    opts: Interfaces.HelpOptions;
    constructor(config: Interfaces.Config, opts: Interfaces.HelpOptions);
    protected description(): string | undefined;
    root(): string;
    protected usage(): string;
    protected version(): string;
}
