/** * Help you to cast a variable to a String * @param {string | any} variable Variable that you want to Cast * @returns {string} Returns a String */ declare const toUpperCase: (variable: string | any) => string; export { toUpperCase };