type Keys = typeof import('./keys.js'); export interface KeyCommand { command: string; name: string; } type KeyNameInterface> = Record; export type KeyName = keyof KeyNameInterface; export type KeyType = KeyCommand | string; export declare function getCommand(key: KeyType): string; export {};