/** * Help you to convert a string or variable to a lower case string * @param {string | any} variable variable that you want to get as lowe case * @returns {string} Lower case string */ declare const toLowerCase: (variable: string | any) => string; export { toLowerCase };