import 'core-js/stable';
/**
 * Given a string in kebab-case, snake_case or 'Sentence case', convert to camelCase.
 * @memberOf module:stringHelpers
 * @param {string} str
 * @returns {string}
 */
declare const camelCase: (str: string) => string;
export default camelCase;
