export default createCaseFirst;
/**
 * Creates a function like `lowerFirst`.
 *
 * @private
 * @param {string} methodName The name of the `String` case method to use.
 * @returns {Function} Returns the new case function.
 */
declare function createCaseFirst(methodName: string): Function;
