/**
 * @license
 * Copyright 2019 Ludan Stoecklé
 * SPDX-License-Identifier: Apache-2.0
 */
export interface Nouns {
    [key: string]: string;
}
export interface Adjectives {
    [key: string]: [string, boolean];
}
export interface PastParticiples {
    [key: string]: string;
}
