import type { Translator } from "./types"; /** * @see Translator implementation that is used for testing. * It returns a mock text. */ export declare class TestingTranslator implements Translator { translate(text: string, targetLang: string): Promise; }