import 'core-js/stable';
/**
 * Given a string, make the first character uppercase and the rest lowercase.
 * @memberOf module:stringHelpers
 * @param {string} str
 * @returns {string}
 */
declare const ucFirst: (str: string) => string;
export default ucFirst;
