type Tuple = {
    [K: string]: {
        [K: string]: number;
    };
};
type Triple = {
    [K: string]: {
        [K: string]: {
            [K: string]: number;
        };
    };
};
export declare class Pronounceable {
    hasVowels(word: string): boolean;
    clean(word: string): string;
    percent(score: number, count: number): number;
    trainTuples(words: string[]): Tuple;
    trainTriples(words: string[]): Triple;
    score(word: string): number;
}
export {};
