import { Command, CommandOptions } from '../types';
export declare class HelpCommand implements Command {
    name: string;
    description: string;
    execute(options: CommandOptions): Promise<void>;
    private getOSType;
}
