import { Sentence } from './types'; /** * Parses the next sentence into a Sentence object and the remaining text. * @param text Input text * @returns [sentence, remaining text, is valid] */ export declare function nextSentence(text: string): [Sentence, string, boolean];