/** * Converts `str` to [camel case](https://en.wikipedia.org/wiki/CamelCase). * * @param {string} [str=''] The string to convert. * @returns {string} Returns the camel cased string. */ export default function camelCase(str?: string): string;