import { type SourceLanguage, type TargetLanguage } from './constants.ts';
import type { DeepLXTranslationResult } from './types.ts';
export declare const translateByDeepLX: (sourceLang: SourceLanguage | undefined, targetLang: TargetLanguage, text: string, formal?: boolean, tagHandling?: string, proxyUrl?: string, dlSession?: string) => Promise<DeepLXTranslationResult>;
