export type TIsStrInCamelCaseArgs = Parameters; export type TIsStrInCamelCaseReturn = ReturnType; /** * Checks if a string is in camelCase. * Rules: * Starts with lowercase letters * Contains one or more capitalized segments (e.g., "abcDef") * * @param {string} str Source string * @returns {boolean} True if string is camelCase * @throws {TypeError} If str is not a string * @example * isStrInCamelCase("abcDef"); // true * isStrInCamelCase("Word"); // false * @example * // Validate JavaScript-style keys imported from a configuration file * const invalidKeys = Object.keys(config).filter((key) => !isStrInCamelCase(key)); */ export declare const isStrInCamelCase: (str: string) => boolean;