/**
 *	Converts a string value into [camel case](https://en.wikipedia.org/wiki/Camel_case).
 * @param value The string to convert.
 * @category String
 * @returns The camel-cased string.
 * @example
camelCase('foo-bar-baz')
// => 'fooBarBaz'
 */
export default function camelCase(value: string): string
