import React from 'react'; interface ISpecialKey { shiftKey: boolean; keyCode: number; } export declare const getInternationalKey: (e: React.KeyboardEvent) => ISpecialKey | undefined; export {};