/**
 * Returns true if passed key code is printable (a-Z, 0-9, etc) character.
 * @param keyCode - code of some key
 * @returns true, if passed keyCode is printable, false otherwise
 */
export declare function isPrintableKey(keyCode: number): boolean;
