import 'core-js/stable';
/**
 * Split a string into sets of numbers or letters.
 * @memberOf module:stringHelpers
 * @param {string} str
 * @returns {array}
 */
declare const words: (str: string) => Array<string>;
export default words;
