import { CommandManager } from './CommandManager';
import { CommandType } from './create';
import { ComposedCommand, IDeclaredMap } from './type';
declare function install<M extends IDeclaredMap<CommandType> = IDeclaredMap<CommandType>>(declaredMap: M): ComposedCommand<CommandManager, CommandType, M>;
export { install };
