import BaseFoundation, { DefaultAdapter } from '../base/foundation'; export interface HotKeysAdapter
, S = Record {
notifyHotKey: (e: KeyboardEvent) => void;
registerEvent: () => void;
unregisterEvent: () => void;
}
export default class HotKeysFoundation , S = Record );
init(): void;
isValidHotKeys: (hotKeys: string[]) => boolean;
handleKeyDown: (event: KeyboardEvent) => void;
destroy(): void;
}