import { target_lang } from "./types";
export interface deeplResponse {
    translations: [
        {
            text: string;
        }
    ];
}
declare const deepl: (html: string, target_lang: target_lang) => Promise<string>;
export default deepl;
