/**
 * Convert string to camelCase text.
 */
declare function camelCase(str: any): any;
export default camelCase;
