type KeyboardEventShortcut = {
    keyMatch: (e: KeyboardEvent) => boolean;
    fn: (e?: KeyboardEvent) => void;
};
export declare const useKeyboardEventListener: (shortcuts: KeyboardEventShortcut[]) => void;
export {};
