/** * Takes an array of sentences and returns a \n separated string of words. * @param sentences - An array of strings that represent valid sentences. */ export declare function processSentences(sentences: string[]): string; export declare function uniqueWordsFromSentences(sentences: string[]): string[];