export declare class Word {
    index?: number;
    value?: string;
    isAbbr?: boolean;
    isNumber?: boolean;
    endsWithDot?: boolean;
    rightText?: string;
    constructor(value: string, index: number);
    reset(value: string, index: number): void;
    isValid(): boolean;
}
