import type { ITranslate } from "./translate.interface.js"; export declare class GoogleTranslate implements ITranslate { private googleTranslate; private supportedLanguages; private constructor(); static initialize(apiKey: string): Promise; private static getSupportedLanguages; isValidLocale(targetLocale: string): boolean; translateText(text: string, _sourceLocale: string, targetLocale: string): Promise; }