/** * --- * category: utilities/utils * --- * Converts a hyphenated string to camel case * * Example inputs: * - 'foo-bar' * - 'baz-qux' * * Example outputs: * - 'fooBar' * - 'bazQux' * * @module camelize * @param {String} str * @returns {String} Returns camel cased string */ declare function camelize(str: string): string; export default camelize; export { camelize }; //# sourceMappingURL=camelize.d.ts.map