export interface Translator<K, T> {
    translate(input: K): Promise<T>;
}
