export declare const words: string[]; export declare function isValidWord(word: string): boolean; /** * Gets the next toki pona word from the given text. * @param text The text to get the next word from * @returns [word, remaining text, is word valid, is last in sentence, is unofficial, has colon] */ export declare function nextWord(text: string): [string, string, boolean, boolean, boolean, boolean];