/** * Converts the first character of a string to lowercase. * If the string is empty, it returns the original string. * If the string has only one character, it converts that character to lowercase. * Otherwise, it converts the first character to lowercase and keeps the rest of the string unchanged. * * @param value - The string to convert. * @returns The string with the first character converted to lowercase. */ export default function lowerFirst(value: string): string; //# sourceMappingURL=lowerFirst.d.ts.map