/**
 * Attempts to guess the .code value corresponding to the given key.
 *
 * Use this to facilitate testing.
 *
 * If no matching keycode is found, returns `key`.
 */
declare const guessKeyCodeFromKey: (key: string) => string;
export default guessKeyCodeFromKey;
