import 'core-js/stable';
/**
 * Given a string in kebab-case, snake_case, camelCase or 'Sentence case', convert to 'Title Case'.
 * @memberOf module:stringHelpers
 * @param {string} str
 * @returns {string}
 */
declare const titleCase: (str: string) => string;
export default titleCase;
