import { Command } from "./command";
import { Field } from "./field/field";
export declare class HelpCommand extends Command {
    static readonly NAME = "help";
    static readonly ALIAS: string[];
    static readonly FIELDS: Field[];
    static readonly DESCRIPTION: string;
    constructor(workspace: string, params: string[]);
    run(): Promise<void>;
}
