//#region src/string/capitalize.d.ts /** * Converts the first character of string to upper case and the remainder to lower case. * * @param str - The string to capitalize * @returns The capitalized string * * @example * capitalize('FRED') // => 'Fred' * capitalize('foo') // => 'Foo' */ declare function capitalize(str: string): string; //#endregion export { capitalize }; //# sourceMappingURL=capitalize.d.mts.map