import Word from "./Word";
export default class Sentence {
    readonly raw: string;
    readonly words: Word[];
    readonly position: number;
    score: number;
    constructor(raw: string, words: Word[], position: number);
    getNormalized(): string;
}
