import Sentence from "./Sentence";
export default class Text {
    readonly raw: string;
    readonly sentences: Sentence[];
    constructor(raw: string, sentences: Sentence[]);
    getNormalized(): string;
}
