declare enum KEY {
    Escape = "Escape",
    Enter = "Enter",
    Tab = "Tab",
    ArrowDown = "ArrowDown",
    ArrowUp = "ArrowUp"
}
type KEYTYPES = keyof typeof KEY;
export declare const useGlobalKeyPress: (targetKey: KEYTYPES, callback: (e: KeyboardEvent) => void) => void;
export {};
