/**
 * Gets separated words from string
 * @param str{String} - source string
 * @return {String[]}
 * @example
 * // How do I split a string into a list of words?
 * const str = "helloWorld! what's_up?";
 * const words = getWords(str);
 * console.log(words); // => [ "hello", "World", "what", "s", "up" ]
 */
export function getWords(str: string): string[];
//# sourceMappingURL=index.d.ts.map