/** * 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: any): (string: any) => any; export default createCaseFirst;