import { SeedDictionary } from './seedDictionary';
export declare class WeightedMarkovGenerator {
    seedLength: number;
    seedDictionary: SeedDictionary;
    constructor(seedLength?: number);
    setSeedLength(seedLength: number): void;
    seedText(text: string): void;
    generateText(textLength: number, start?: string, endsOn?: string): string;
}
