//#region src/string/lowerFirst.d.ts /** * Converts the first character of string to lower case. * * @param str - The string to convert * @returns The string with first character lower cased * * @example * lowerFirst('Fred') // => 'fred' * lowerFirst('FRED') // => 'fRED' */ declare function lowerFirst(str: string): string; //#endregion export { lowerFirst }; //# sourceMappingURL=lowerFirst.d.mts.map