/** * Formats a string to camel case. * * @example * Basic usage * ```js * // Returns journalismIsAwesome * const text = camelCase("Journalism is awesome") * ``` * * @param input The string to be formatted. * * @category Formatting */ export default function camelCase(input: string): string;