export type CompleteSentenceMessageIds = "doublePeriod" | "missingCapital" | "missingPeriod"; interface IncompleteSentence { readonly sentence: string; readonly messageId: CompleteSentenceMessageIds; } export declare function getIncompleteSentences(text: string): readonly IncompleteSentence[]; export declare function getSentences(text: string): readonly string[]; export {}; //# sourceMappingURL=completeSentence.d.ts.map