import ICommand, { ICommandCallback, ICommandOptions } from './ICommand'; declare class GlobalPluginContext { private _commandMap; constructor(); registerCommand(name: string, options: ICommandOptions, fn: ICommandCallback): void; getCommand(name: string): ICommand | null; } export default GlobalPluginContext;