/**
 * @description 小写转换成大写
 *
 * @param {string} str 需要被转换的字符串
 * @return {*}  {string} 一个新的字符串, 转换为大写的字符串
 * @example toUpperCase("abc") => "ABC"
 */
declare const toUpperCase: (str: string) => string;
export default toUpperCase;
