import Store from '../store'; import { CommanderItem } from './commanderType'; declare class CommanderWrapper { store: Store; commandMap: Record; constructor(store: Store, commandMap?: Record); getList(): Record; register(item: CommanderItem): void; registerKeyBoard(current: CommanderItem): () => void; unRegister(name: string): void; exec(name: string, options?: any): void; } export default CommanderWrapper;