/** When the given key is pressed down, execute the given callback. */
export default function useKeyDown(key: string, callback: (event: KeyboardEvent) => void): void;
