/** * Checks if the given unicode character is a printable keyboard * symbol. * * @param {number} char - A unicode character code. */ export declare const isKeyboardSymbol: (char: number) => boolean;