declare class SeedBlob {
    count: number;
    countMap: Map<string, number>;
    constructor();
    addValue(val: string): void;
    getWeightedValue(): string;
}
export declare class SeedDictionary {
    seedLength: number;
    dict: Map<string, SeedBlob>;
    constructor(seedLength: number);
    populateDictionary(text: string): void;
    getRandomSeed(): string;
    hasSeed(seed: string): boolean;
    getValue(seed: string): string;
    clearDictionary(): void;
}
export {};
