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