import type { Translator } from "./types"; /** * @see Translator implementation that uses the old Google Translation API. * This API is rate limited and the user will see an error if too many * translation requests are done within a given timespan. */ export declare class LegacyTranslator implements Translator { translate(text: string, targetLang: string): Promise; }