export = splitTextNode; /** * Given a string of text, * return an array which contains * all characters from the original * string but which has individual "\n" * array entries for all newline characters. * * This array can be joined with an * empty string to reconstruct the * original string. * * @param {String} string * @returns {String[]} */ declare function splitTextNode(string: string): string[];