import type { SourceLanguage, TargetLanguage } from './constants.ts';
export declare const translate: (text: string, targetLang: TargetLanguage, sourceLang?: SourceLanguage, formal?: boolean) => Promise<string>;
