/**
 * Checks if a string is in camelCase format
 * @param str - The string to check
 * @returns boolean indicating if the string is in camelCase
 *
 * @example
 * ```typescript
 * isCamelCase('helloWorld') // => true
 * isCamelCase('hello_world') // => false
 * ```
 * @internal This function is for internal use by the library
 */
export default function isCamelCase(str: string): boolean;
