/** * Help you to cast a variable or a String to a Title case (hello world => Hello World) * @param {string | any} text text that you want to cast to Title Case * @returns {string} Returns a Title Case String */ declare const toTitleCase: (text: string | any) => string; export { toTitleCase };