import { Visibility } from '../lib/structs';
export { names } from './data/names';
export { Log, Line } from './log';
declare type Words = {
    [key: string]: boolean;
};
export declare const words: Words;
export declare const alphabet: string[];
declare type Viz = {
    [key: string]: Visibility;
};
export declare const letters: Viz;
export declare function getRand(from: string[]): string;
