/**
 * Returns the character correspondinf to the specified ASCII value
 * @param {number} val The ASCII value to convert to string
 * @returns The string with the character defined by the given ASCII value
 */
export declare const chr: (val: number) => string;
