/**
 * This is a function similar to loadash `camelCase`, but it does not mess with capitalization.
 *
 * loadash: `camelCase('A-BC')` => "ABc"
 * this fn: `camelCase('A-BC')` => "ABC"
 *
 */
export declare function camelCase(text?: string): string;
