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