//#region packages/basic/string/firstLower.d.ts /** * 首字母小写 * @param {string} str 处理字符串 * @returns {string} */ declare function firstLower(str: string): string; //#endregion export { firstLower as t };