//#region src/string/camelCase.d.ts /** * Converts string to camel case. * * @param str - The string to convert * @returns The camel cased string * * @example * camelCase('Foo Bar') // => 'fooBar' * camelCase('--foo-bar--') // => 'fooBar' * camelCase('foo_bar') // => 'fooBar' */ declare function camelCase(str: string): string; //#endregion export { camelCase }; //# sourceMappingURL=camelCase.d.mts.map