export default class Word {
    readonly word: string;
    readonly normalized: string;
    constructor(word: string);
}
