/** * Splits a Unicode `string` into an array of its words. * * @returns {Array} Returns the words of `string`. */ export declare function unicodeWords(s: string): RegExpMatchArray | null;