/**
 * @private
 * Convert to Java bean name case
 *
 * Handle the specific case when the second letter is capitalized
 * See http://stackoverflow.com/questions/2948083/naming-convention-for-getters-setters-in-java
 *
 * @param beanName
 * @return
 */
export declare const javaBeanCase: (beanName: string) => string;
