/** * @file /src/utils/string.ts * @name String * @description Utility functions for string manipulation. */ /** * Converts a string to title case. * * @param str - The input string to convert. * @returns {string} The string in title case. */ export declare const titleCase: (str: string) => string; //# sourceMappingURL=string.d.ts.map