/** * Converts a string to camelCase * @param str - The string to convert * @returns The camelCase string */ export declare const camelCase: (string_: string) => string;