interface Inflection {
    type: string;
    value: string;
}

interface Translation {
    word: string;
    translation: string;
    inflection: Inflection[];
}
declare function translate(word: string): Promise<Translation[] | undefined>;

export { translate };
