export declare class Rword {
    private generations;
    private seedChars;
    private words;
    constructor(words: string[], seed?: string);
    generate(length?: number): string[];
    getWords(): string[];
    shuffle(): void;
    load(words: string[]): void;
}
